I guess I'm developing a convention for how these things should look now

This commit is contained in:
Tony Garnock-Jones 2022-01-22 23:21:05 +01:00
parent a98aa357d4
commit d8615175a5
1 changed files with 7 additions and 5 deletions

View File

@ -15,12 +15,14 @@
"scripts": {
"regenerate": "rm -rf ./src/gen && ./bin/preserves-schema-ts.js --output ./src/gen ../../../../schema:schema.prs",
"clean": "rm -rf lib dist",
"prepare": "tsc && rollup -c",
"rollupwatch": "rollup -c -w",
"prepare": "yarn compile && yarn rollup",
"compile": "tsc",
"compile:watch": "yarn compile -w",
"rollup": "rollup -c",
"rollup:watch": "yarn rollup -w",
"test": "jest",
"testwatch": "jest --watch",
"veryclean": "yarn run clean && rm -rf node_modules",
"watch": "tsc -w"
"test:watch": "jest --watch",
"veryclean": "yarn run clean && rm -rf node_modules"
},
"bin": {
"preserves-schema-ts": "./bin/preserves-schema-ts.js",