From 874bb8d3e8da214983fcf16fc1105564a83c95b4 Mon Sep 17 00:00:00 2001 From: Sam Potts Date: Fri, 10 Mar 2023 07:26:37 +1100 Subject: [PATCH] fix: replace pnpm with npm in scripts --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 1eb86ebc..649e36dc 100644 --- a/package.json +++ b/package.json @@ -30,12 +30,12 @@ }, "browserslist": "> 1%", "scripts": { - "postinstall": "pnpm build", + "postinstall": "npm run build", "build": "gulp build", - "lint": "eslint src/js && pnpm remark && stylelint **/*.scss", + "lint": "eslint src/js && npm run remark && stylelint **/*.scss", "lint:fix": "eslint --fix src/js && stylelint **/*.scss --fix", "remark": "remark -f --use 'validate-links=repository:\"sampotts/plyr\"' '{,!(node_modules),.?**/}*.md'", - "deploy": "pnpm lint && gulp version && gulp build && gulp deploy", + "deploy": "npm run lint && gulp version && gulp build && gulp deploy", "format": "prettier --write \"./{src,demo/src}/**/*.{js,scss}\"", "spellcheck": "cspell \"**/*.{js,md,scss,json}\" --no-must-find-files", "start": "gulp"