143
143
"get:submodule" : " npm run _get:${GET:-submodule}" ,
144
144
"get:version" : " echo $npm_package_version" ,
145
145
"getheapsize" : " node -e 'console.log(`node heap limit = ${require(\" v8\" ).getHeapStatistics().heap_size_limit / (1024 * 1024)} Mb`)'" ,
146
- "git:authors" : " test -f ./scripts/git_authors.sh && . ./scripts/git_authors.sh || echo 'Git authors script is missing'" ,
147
- "git:changelog" : " test -f ./scripts/git_changelog.sh && . ./scripts/git_changelog.sh || echo 'Git changelog script is missing'" ,
148
- "git:check:branch" : " test -f ./scripts/git_check_branch.sh && . ./scripts/git_check_branch.sh || echo 'Git check branch script is missing'" ,
146
+ "git:authors" : " test -f ./scripts/git_authors.sh && . ./scripts/git_authors.sh || echo '✔ Git authors script is missing'" ,
147
+ "git:changelog" : " test -f ./scripts/git_changelog.sh && . ./scripts/git_changelog.sh || echo '✔ Git changelog script is missing'" ,
148
+ "git:check:branch" : " test -f ./scripts/git_check_branch.sh && . ./scripts/git_check_branch.sh || echo '✔ Git check branch script is missing'" ,
149
149
"git:clean" : " git stash && git clean -fdX" ,
150
150
"git:diff" : " git --no-pager diff --exit-code --stat HEAD" ,
151
151
"git:history" : " test -f ./scripts/git_history.sh && . ./scripts/git_history.sh && cat datas.csv | chart-csv > datas.html || echo 'Git history script is missing'" ,
152
152
"git:log" : " git log -1 --format='format:%H' HEAD" ,
153
153
"git:ls" : " git cat-file -p HEAD && git ls-tree -r HEAD" ,
154
- "git:size" : " test -f ./scripts/git_size.sh && . ./scripts/git_size.sh || echo 'Git size script is missing'" ,
154
+ "git:size" : " test -f ./scripts/git_size.sh && . ./scripts/git_size.sh || echo '✔ Git size script is missing'" ,
155
155
"history:view" : " npm run git:history && open datas.html" ,
156
156
"husky:install" : " is-ci || husky install" ,
157
157
"lerna:canary" : " lerna version prerelease --preid canary --message \" Publish Canary\" --exact" ,
182
182
"markdown" : " markdown-link-check ./README.md ./SECURITY.md" ,
183
183
"package:changelog" : " npm run dev --base_dir=../../ --workspace=packages/changelog --if-present" ,
184
184
"package:contributors" : " npm run dev --image_dir=../../images --workspace=packages/contributors --if-present" ,
185
- "package:name" : " test -f ./scripts/package_app_name.js && node --experimental-modules --no-warnings --no-deprecation ./scripts/package_app_name.js || echo 'Node package name script is missing'" ,
185
+ "package:name" : " test -f ./scripts/package_app_name.js && node --experimental-modules --no-warnings --no-deprecation ./scripts/package_app_name.js || echo '✔ Node package name script is missing'" ,
186
186
"postinstall" : " npm run husky:install" ,
187
187
"postversion" : " git push --follow-tags && npm publish --access public" ,
188
188
"preinstall" : " npm run get:submodule" ,
195
195
"release-major" : " git checkout master && npm run all && npm run bump:major && git commit -a -m 'Build project codebase with major version' && git push origin master --tags" ,
196
196
"release-minor" : " git checkout master && npm run all && npm run bump:minor && git commit -a -m 'Build project codebase with minor version' && git push origin master --tags" ,
197
197
"release-patch" : " git checkout master && npm run all && npm run bump:patch && git commit -a -m 'Build project codebase with patch version' && git push origin master --tags" ,
198
- "release:md" : " test -f ./scripts/git_release_notes.sh && . ./scripts/git_release_notes.sh > NOTES.md || echo 'Git release notes script is missing'" ,
198
+ "release:md" : " test -f ./scripts/git_release_notes.sh && . ./scripts/git_release_notes.sh > NOTES.md || echo '✔ Git release notes script is missing'" ,
199
199
"remark" : " remark -q -f ." ,
200
200
"setheapsize" : " export NODE_OPTIONS=--max_old_space_size=2048" ,
201
201
"sort-package-json" : " sort-package-json" ,
229
229
" packages/*"
230
230
]
231
231
}
232
- }
232
+ }
0 commit comments