Skip to content

Commit a6d42ca

Browse files
Merge pull request #78 from brendandburns/master
Add some build scripts and rev the version.
2 parents 24f7c1b + f3d1886 commit a6d42ca

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

node-client/build-package.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/bash
2+
3+
cp ../README.md ./
4+
npm pack
5+
rm README.md

node-client/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
{
22
"name": "@kubernetes/client-node",
3-
"version": "0.5.0",
3+
"version": "0.5.2",
44
"description": "NodeJS client for kubernetes",
55
"repository": {
66
"type": "git",
77
"url": "git+https://github.com/kubernetes-client/javascript.git"
88
},
99
"files": [
1010
"dist/*.ts",
11-
"dist/*.js"
11+
"dist/*.js",
12+
"README.md"
1213
],
1314
"main": "dist/index.js",
1415
"types": "dist/index.d.ts",

node-client/push-package.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
3+
npm publish

0 commit comments

Comments
 (0)