Skip to content

Commit 2e7539c

Browse files
authored
Merge pull request #259 from brendandburns/release
Improve release....
2 parents 6dabede + fb19e32 commit 2e7539c

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

build-package.sh

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,17 @@
33
# exit on any error
44
set -e
55

6+
# validate branches
67
. ./pre-check.sh
78

8-
tsc
9+
# pre-requisites
10+
npm run lint
11+
npm test
12+
13+
# clean any old files
14+
npm run clean
15+
npm install
16+
17+
# build
18+
npm run build
919
npm pack

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kubernetes/client-node",
3-
"version": "0.9.1",
3+
"version": "0.9.3",
44
"description": "NodeJS client for kubernetes",
55
"repository": {
66
"type": "git",

tsconfig.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
"noLib": false,
1111
"declaration": true,
1212
"outDir": "dist",
13+
"rootDir": "src",
1314
"esModuleInterop": true,
1415
"allowSyntheticDefaultImports": true,
1516
"strict": true,
@@ -20,6 +21,7 @@
2021
},
2122
"exclude": [
2223
"node_modules",
24+
"src/*_test.ts",
2325
"dist"
2426
],
2527
"include": [

0 commit comments

Comments
 (0)