Repair clean targets

This commit is contained in:
Tony Garnock-Jones 2024-03-09 23:12:27 +01:00
parent 60a5c2fdee
commit de282f539a
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@
"author": "Tony Garnock-Jones <tonyg@leastfixedpoint.com>", "author": "Tony Garnock-Jones <tonyg@leastfixedpoint.com>",
"scripts": { "scripts": {
"prepare": "./build-aggregate.sh", "prepare": "./build-aggregate.sh",
"clean": "rm -rf index.js index.min.js", "clean": "rm -rf index.js index.min.js *.js.map",
"veryclean": "yarn run clean && rm -rf node_modules" "veryclean": "yarn run clean && rm -rf node_modules"
}, },
"dependencies": { "dependencies": {

View File

@ -21,7 +21,7 @@
"rollup:watch": "../../node_modules/.bin/rollup -c -w", "rollup:watch": "../../node_modules/.bin/rollup -c -w",
"test": "../../node_modules/.bin/jest", "test": "../../node_modules/.bin/jest",
"cover": "../../node_modules/.bin/nyc --reporter=html ../../node_modules/.bin/jest", "cover": "../../node_modules/.bin/nyc --reporter=html ../../node_modules/.bin/jest",
"clean": "rm -rf lib dist", "clean": "rm -rf lib dist ./src/gen",
"veryclean": "yarn run clean && rm -rf node_modules" "veryclean": "yarn run clean && rm -rf node_modules"
}, },
"main": "dist/syndicate.js", "main": "dist/syndicate.js",