Skip to content

Commit

Permalink
Update package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
201flaviosilva committed Dec 14, 2022
1 parent 1917a4d commit da388bf
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Test-Vanilla.yml
Expand Up @@ -27,4 +27,4 @@ jobs:
run: npm install

- name: Test
run: npm run test:all
run: npm run test
4 changes: 2 additions & 2 deletions lib/DOM/package.json
Expand Up @@ -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",
Expand Down
6 changes: 3 additions & 3 deletions lib/Vanilla/package.json
Expand Up @@ -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",
Expand Down

0 comments on commit da388bf

Please sign in to comment.