File tree Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -32,11 +32,25 @@ Please make sure to run the tests (`npm test`) before you commit your changes.
32
32
33
33
## Help needed
34
34
35
- Please checkout the [the open issues][issues]
35
+ Please checkout the [the open issues][issues]. Issues labelled [**Help
36
+ Wanted**][help-wanted] and [**Good First Issue**][good-first-issue] are
37
+ especially good to help with.
36
38
37
39
Also, please watch the repo and respond to questions/bug reports/feature
38
40
requests! Thanks!
39
41
42
+ ## Deploying (access only)
43
+
44
+ If you have access to the npm project, run the following:
45
+
46
+ ```bash
47
+ npm run deploy
48
+ ```
49
+
50
+ Follow the prompts to release.
51
+
40
52
[ all-contributors ] : https://github.com/all-contributors/all-contributors
41
53
[ egghead ] : https://egghead.io/series/how-to-contribute-to-an-open-source-project-on-github
54
+ [ good-first-issue ] : https://github.com/manifoldco/swagger-to-ts/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22
55
+ [ help-wanted ] : https://github.com/manifoldco/swagger-to-ts/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22
42
56
[ issues ] : https://github.com/manifoldco/swagger-to-ts/issues
Original file line number Diff line number Diff line change 47
47
"prettier" : {},
48
48
"scripts" : {
49
49
"build" : " pika build" ,
50
+ "deploy" : " npm run build && pika publish" ,
50
51
"lint" : " eslint --ignore-path .gitignore --ext .js,.ts src" ,
51
52
"pregenerate" : " npm run build" ,
52
53
"generate" : " npm run generate:basic && npm run generate:notypes && npm run generate:nowrapper && npm run generate:nowarning" ,
53
54
"generate:basic" : " node pkg/bin/cli example/basic.yaml -o example/basic.ts" ,
54
55
"generate:notypes" : " node pkg/bin/cli example/no-types.yaml -o example/no-types.ts" ,
55
56
"generate:nowarning" : " node pkg/bin/cli example/basic.yaml -o example/no-warning.ts --no-warning" ,
56
57
"generate:nowrapper" : " node pkg/bin/cli example/basic.yaml -o example/no-wrapper.ts --nowrapper" ,
57
- "publish" : " npm run build && pika publish" ,
58
58
"test" : " npm run build && jest" ,
59
59
"test:coverage" : " npm run build && jest --coverage" ,
60
60
"typecheck" : " tsc --noEmit" ,
You can’t perform that action at this time.
0 commit comments