Skip to content

Commit

Permalink
Merge pull request kubernetes-client#78 from brendandburns/master
Browse files Browse the repository at this point in the history
Add some build scripts and rev the version.
  • Loading branch information
brendandburns authored Aug 13, 2018
2 parents 24f7c1b + f3d1886 commit a6d42ca
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
5 changes: 5 additions & 0 deletions node-client/build-package.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash

cp ../README.md ./
npm pack
rm README.md
5 changes: 3 additions & 2 deletions node-client/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
{
"name": "@kubernetes/client-node",
"version": "0.5.0",
"version": "0.5.2",
"description": "NodeJS client for kubernetes",
"repository": {
"type": "git",
"url": "git+https://github.com/kubernetes-client/javascript.git"
},
"files": [
"dist/*.ts",
"dist/*.js"
"dist/*.js",
"README.md"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
3 changes: 3 additions & 0 deletions node-client/push-package.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash

npm publish

0 comments on commit a6d42ca

Please sign in to comment.