From b109fa4407804ec97ec956a331bcf7fd79728c52 Mon Sep 17 00:00:00 2001 From: Franck Royer Date: Wed, 28 Apr 2021 11:52:26 +1000 Subject: [PATCH] Remove useless script npm i must be run first to have `run-s` available. --- web-chat/package.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/web-chat/package.json b/web-chat/package.json index 7a0e1966f7..6e8c585afc 100644 --- a/web-chat/package.json +++ b/web-chat/package.json @@ -33,9 +33,8 @@ "test:spelling": "cspell \"{README.md,.github/*.md,src/**/*.{ts,tsx},public/**/*.html}\"", "fix:prettier": "prettier \"src/**/*.{ts,tsx}\" --write", "fix:lint": "eslint src --ext .ts --ext .tsx --fix", - "js-waku:install": "cd ../; npm install", "js-waku:build": "cd ../; npm run build", - "predeploy": "run-s js-waku:* build", + "predeploy": "run-s js-waku:build build", "deploy": "gh-pages -d build" }, "eslintConfig": {