From 70d90ccad7b81065350a2c527d296a2359641942 Mon Sep 17 00:00:00 2001 From: belopash Date: Thu, 15 Feb 2024 16:30:11 +0500 Subject: [PATCH] fix: another try to make it compatible with windows --- package.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/package.json b/package.json index 47edaed..cf815da 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@subsquid/cli", "description": "squid cli tool", - "version": "2.8.2", + "version": "2.8.3", "license": "GPL-3.0-or-later", "repository": "git@github.com:subsquid/squid-cli.git", "publishConfig": { @@ -42,16 +42,16 @@ }, "homepage": "https://www.subsquid.io/", "scripts": { - "postinstall": "bin/run.js autocomplete --refresh-cache", + "postinstall": "node ./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": {