File tree Expand file tree Collapse file tree 5 files changed +555
-1
lines changed Expand file tree Collapse file tree 5 files changed +555
-1
lines changed Original file line number Diff line number Diff line change @@ -147,3 +147,16 @@ jobs:
147
147
node_auth_token : ${{ secrets.GH_TOKEN }}
148
148
- name : Typecheck
149
149
run : npm run typecheck
150
+ dependencies :
151
+ name : Dependencies
152
+ runs-on : ubuntu-latest
153
+ timeout-minutes : 30
154
+ steps :
155
+ - name : Checkout
156
+ uses : actions/checkout@v3
157
+ - name : Setup
158
+ uses : ./.github/actions/setup
159
+ with :
160
+ node_auth_token : ${{ secrets.GH_TOKEN }}
161
+ - name : Analyze dependencies
162
+ run : npm run dependencies
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ Bootstrap a new TypeScript module in five minutes or less.
20
20
- [ Prettier] code.
21
21
- Futuristic debuggable unit testing with [ AVA] .
22
22
- Code coverage reporting with [ Istanbul] and [ c8] .
23
+ - Robust static dependency analysis with [ DPDM] .
23
24
- Fully automated version management and package publishing with [ semantic-release] .
24
25
- Continuous testing and package publishing with [ GitHub Actions] .
25
26
- Consistent coding with [ EditorConfig] .
@@ -29,6 +30,7 @@ Bootstrap a new TypeScript module in five minutes or less.
29
30
30
31
[ AVA ] : https://github.com/avajs/ava
31
32
[ code owners ] : https://github.blog/2017-07-06-introducing-code-owners/
33
+ [ DPDM ] : https://github.com/acrazing/dpdm
32
34
[ ECMAScript module ] : https://nodejs.org/api/esm.html
33
35
[ ESLint ] : https://eslint.org/
34
36
[ EditorConfig ] : https://editorconfig.org/
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ makenew () {
55
55
read -p ' > Short package description (Foos and bars.): ' mk_description
56
56
read -p ' > GitHub repository name (my-repo): ' mk_repo
57
57
58
- sed_delete README.md ' 9,99d '
58
+ sed_delete README.md ' 9,101d '
59
59
sed_insert README.md ' 9i' ' TODO'
60
60
61
61
find_replace " s/^ \" version\" : \" .*\" / \" version\" : \" 0.0.0\" /g"
You can’t perform that action at this time.
0 commit comments