Skip to content

Commit

Permalink
fix: remove './' from scripts paths
Browse files Browse the repository at this point in the history
  • Loading branch information
belopash committed Feb 15, 2024
1 parent c595caa commit 49ec6de
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 @@ -42,16 +42,16 @@
},
"homepage": "https://www.subsquid.io/",
"scripts": {
"postinstall": "./bin/run.js autocomplete --refresh-cache",
"postinstall": "bin/run.js autocomplete --refresh-cache",
"build": "rm -rf lib && tsc",
"dev": "./bin/dev",
"sqd": "./bin/run.js",
"bl": "node ./lib/blessed.js",
"dev": "bin/dev",
"sqd": "bin/run.js",
"bl": "node lib/blessed.js",
"lint": "eslint --fix src/**/*",
"test:unit": "NODE_ENV=test jest --bail --testRegex=.unit.spec.ts$",
"tsc": "tsc --noEmit",
"pkg:build": "./bin/pkg-build.sh",
"pkg:compress": "./bin/pkg-compress.sh",
"pkg:build": "bin/pkg-build.sh",
"pkg:compress": "bin/pkg-compress.sh",
"upg": "npx npm-check-updates -u -i"
},
"jest": {
Expand Down

0 comments on commit 49ec6de

Please sign in to comment.