File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed
Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change 2626 ],
2727 "scripts" : {
2828 "build" : " npm run clean && npm run build:lib" ,
29+ "test" : " jest --coverage" ,
30+ "lint" : " eslint ./src" ,
31+ "lint:fix" : " eslint ./src --fix" ,
32+ "format" : " prettier --write ./src" ,
33+ "npm:publish:dry-run" : " npm publish --dry-run" ,
34+ "npm:publish" : " npm publish --access public" ,
35+ "typecheck" : " tsc --noEmit -p tsconfig.json --composite false" ,
2936 "build:lib" : " npm run build:cjs && npm run build:esm" ,
3037 "build:esm" : " tsc --module esnext --outDir bin/esm && echo '{\" type\" : \" module\" }' > bin/esm/package.json" ,
3138 "build:cjs" : " tsc --module commonjs --outDir bin/cjs && echo '{\" type\" : \" commonjs\" }' > bin/cjs/package.json" ,
3239 "build:doc" : " typedoc" ,
33- "clean" : " rm -rf bin" ,
34- "format" : " prettier --write ./src" ,
35- "typecheck" : " tsc --noEmit -p tsconfig.json --composite false" ,
36- "lint" : " eslint ./src" ,
37- "lint:fix" : " eslint ./src --fix" ,
38- "test" : " jest --coverage"
40+ "clean" : " rm -rf bin"
41+
3942 },
4043 "nyc" : {
4144 "extension" : [
You can’t perform that action at this time.
0 commit comments