From: Nick Downing Date: Mon, 3 Jan 2022 03:59:04 +0000 (+1100) Subject: Change from pnpm to npm, add ./link.sh shortcut for npm style package linking X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?p=disk_build.git;a=commitdiff_plain;h=93cf74bc9455015d72091bad3fc19a160dcdc392 Change from pnpm to npm, add ./link.sh shortcut for npm style package linking --- diff --git a/.gitignore b/.gitignore index 66a1e30..53b752b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,3 @@ /disk_build-*.tgz /node_modules -/pnpm-lock.yaml +/package-lock.json diff --git a/link.sh b/link.sh new file mode 100755 index 0000000..41f600e --- /dev/null +++ b/link.sh @@ -0,0 +1,4 @@ +#!/bin/sh +rm -rf node_modules package-lock.json +npm install +npm link