diff --git a/.github/workflows/Test-Vanilla.yml b/.github/workflows/Test-Vanilla.yml index 35f9c7e..d3be28e 100644 --- a/.github/workflows/Test-Vanilla.yml +++ b/.github/workflows/Test-Vanilla.yml @@ -27,4 +27,4 @@ jobs: run: npm install - name: Test - run: npm run test:all + run: npm run test diff --git a/lib/DOM/package.json b/lib/DOM/package.json index 7f120fe..9474044 100644 --- a/lib/DOM/package.json +++ b/lib/DOM/package.json @@ -16,8 +16,8 @@ ], "scripts": { "clear": "rm -rf types && rm -rf docs && rm -rf build", - "test": "jest --watchAll=true --config=jest.config.js", - "test:all": "jest", + "test": "jest", + "test:dev": "jest --watchAll=true --config=jest.config.js", "jsdoc": "jsdoc -c jsdoc.conf.json", "types": "npx -p typescript tsc src/*.js --declaration --allowJs --emitDeclarationOnly --outDir types", "compile": "webpack --mode production --config ./webpack.config.js", diff --git a/lib/Vanilla/package.json b/lib/Vanilla/package.json index c2b157a..990209c 100644 --- a/lib/Vanilla/package.json +++ b/lib/Vanilla/package.json @@ -16,15 +16,15 @@ ], "scripts": { "clear": "rm -rf types && rm -rf docs && rm -rf build", - "test": "jest --watchAll=true --config=jest.config.js", - "test:all": "jest", + "test": "jest", + "test:dev": "jest --watchAll=true --config=jest.config.js", "jsdoc": "jsdoc -c jsdoc.conf.json", "types": "npx -p typescript tsc src/*.js --declaration --allowJs --emitDeclarationOnly --outDir types", "compile": "npm run compile:browser && npm run compile:node", "compile:browser": "webpack --mode production --config ./scripts/webpack-browser.config.js", "compile:node": "webpack --mode production --config ./scripts/webpack-node.config.js", "build": "npm run clear && npm run compile && npm run jsdoc && npm run types", - "bump": "npm run build && np" + "bump": "npm run build && np --no-cleanup" }, "devDependencies": { "@babel/core": "^7.19.6",