Skip to content

Commit

Permalink
Fix paths in npm scripts within package.json for consistency and impr…
Browse files Browse the repository at this point in the history
…oved cross-platform compatibility
  • Loading branch information
Josue Monteiro committed Aug 21, 2024
1 parent c60bef2 commit 561791e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,17 +64,17 @@
"sideEffects": false,
"scripts": {
"build": "run-p build:js build:types",
"build:js": "node build/js.js",
"build:types": "node build/types.js",
"build:js": "node ./build/js.js",
"build:types": "node ./build/types.js",
"dev": "run-p serve 'build:js -- --watch' 'build:types -- --watch'",
"clean": "rimraf coverage/* dist/*",
"escheck": "es-check es2018 'dist/**/*.js' --module",
"lint": "prettier . --check && eslint . && markdownlint *.md docs/*.md --ignore node_modules",
"clean": "rimraf coverage/* ./dist/*",
"escheck": "es-check es2018 './dist/**/*.js' --module",
"lint": "prettier . --check && eslint . && ./markdownlint *.md ./docs/*.md --ignore node_modules",
"lint:fix": "prettier . --write && eslint . --fix",
"prepare": "run-s clean build",
"serve": "node server.js",
"start": "npm run dev",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js",
"version": "run-s prepare lint escheck test",
"postinstall": "npm install --ignore-scripts && npm run build"
},
Expand Down

0 comments on commit 561791e

Please sign in to comment.