From 4ea80ccee46f8ac8685a944b9174dc82c67a8816 Mon Sep 17 00:00:00 2001 From: Nick Downing Date: Mon, 3 Jan 2022 14:59:04 +1100 Subject: [PATCH] Change from pnpm to npm, add ./link.sh shortcut for npm style package linking --- .gitignore | 2 +- link.sh | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100755 link.sh diff --git a/.gitignore b/.gitignore index 310c209..ffd06d2 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,3 @@ /ndcode-jstize-*.tgz /node_modules -/pnpm-lock.yaml +/package-lock.json diff --git a/link.sh b/link.sh new file mode 100755 index 0000000..642b48d --- /dev/null +++ b/link.sh @@ -0,0 +1,5 @@ +#!/bin/sh +rm -rf node_modules package-lock.json +npm link @ndcode/clean-css @ndcode/html-minifier +npm install +npm link -- 2.34.1