Have `npm run build-dist` _always_ recreate `dist` (#247)

98ca4dc · Paulo F. Oliveira · 2024-01-28 22:45

1 files +1 -1

Files changed

modified package.json
+1 −1
@@ -11,7 +11,7 @@
11 11 "shellcheck": "shellcheck .github/workflows/*.sh",
12 12 "test": "node test/setup-beam.test.js",
13 13 "yamllint": "yamllint .github/workflows/**.yml && yamllint .*.yml && yamllint *.yml",
14 "build-dist": "npm install && npm run build && npm run format && npm run markdownlint && npm run shellcheck && npm run yamllint && npm run jslint"
14 + "build-dist": "rm -rf ./dist && npm install && npm run build && npm run format && npm run markdownlint && npm run shellcheck && npm run yamllint && npm run jslint"
15 15 },
16 16 "dependencies": {
17 17 "@actions/core": "1.10.0",

Parents: b891364