File tree 3 files changed +20
-3
lines changed
3 files changed +20
-3
lines changed Original file line number Diff line number Diff line change @@ -66,6 +66,14 @@ npm install ngx-nullish
66
66
</p>
67
67
` ` `
68
68
69
+ ## Deployment
70
+
71
+ Please run a script:
72
+
73
+ ` ` ` bash
74
+ ./scripts/deploy.sh
75
+ ` ` `
76
+
69
77
## License
70
78
71
79
[The MIT License](https: // piecioshka.mit-license.org) @ 2020
Original file line number Diff line number Diff line change 9
9
"test" : " ng test --no-watch --no-progress --browsers ChromeHeadless" ,
10
10
"test:watch" : " ng test" ,
11
11
"lint" : " ng lint" ,
12
- "e2e" : " ng e2e" ,
13
- "predeploy" : " npm run lint && npm run test && npm run build" ,
14
- "deploy" : " npm publish --folder ./dist/ngx-nullish"
12
+ "e2e" : " ng e2e"
15
13
},
16
14
"private" : true ,
17
15
"dependencies" : {
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
3
+ npm run lint
4
+
5
+ npm run test
6
+
7
+ cd projects/ngx-nullish/ && npm version patch
8
+
9
+ npm run build
10
+
11
+ npm publish --folder ./dist/ngx-nullish
You can’t perform that action at this time.
0 commit comments