aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2021-10-03 20:14:38 +0530
committerLibravatar GitHub <noreply@github.com>2021-10-03 20:14:38 +0530
commitdc4aa9d7912da85b135ed94ec0f3dc1a17b21953 (patch)
tree9688af4af463769a97f8bf54fbb66d78ba34a403
parentMinor grammar improvements to README.md [skip ci] (#2015) (diff)
downloadferdium-app-dc4aa9d7912da85b135ed94ec0f3dc1a17b21953.tar.gz
ferdium-app-dc4aa9d7912da85b135ed94ec0f3dc1a17b21953.tar.zst
ferdium-app-dc4aa9d7912da85b135ed94ec0f3dc1a17b21953.zip
chore: upgrade 'pnpm' to '6.16.0' (#2014)
-rw-r--r--.github/workflows/dependency-updates.yml2
-rw-r--r--.github/workflows/ferdi-builds.yml6
-rw-r--r--CONTRIBUTING.md2
-rw-r--r--Dockerfile2
4 files changed, 7 insertions, 5 deletions
diff --git a/.github/workflows/dependency-updates.yml b/.github/workflows/dependency-updates.yml
index d41ded354..eafa6645e 100644
--- a/.github/workflows/dependency-updates.yml
+++ b/.github/workflows/dependency-updates.yml
@@ -55,7 +55,7 @@ jobs:
55 - name: Install pnpm 55 - name: Install pnpm
56 uses: pnpm/action-setup@v2.0.1 56 uses: pnpm/action-setup@v2.0.1
57 with: 57 with:
58 version: 6.14.7 58 version: 6.16.0
59 - name: Uninstall locally and reinstall global npm modules 59 - name: Uninstall locally and reinstall global npm modules
60 run: | 60 run: |
61 npm uninstall node-gyp 61 npm uninstall node-gyp
diff --git a/.github/workflows/ferdi-builds.yml b/.github/workflows/ferdi-builds.yml
index 199ec95bf..062243659 100644
--- a/.github/workflows/ferdi-builds.yml
+++ b/.github/workflows/ferdi-builds.yml
@@ -152,7 +152,7 @@ jobs:
152 - name: Install pnpm 152 - name: Install pnpm
153 uses: pnpm/action-setup@v2.0.1 153 uses: pnpm/action-setup@v2.0.1
154 with: 154 with:
155 version: 6.14.7 155 version: 6.16.0
156 - name: Uninstall locally and reinstall global npm modules 156 - name: Uninstall locally and reinstall global npm modules
157 run: | 157 run: |
158 npm uninstall node-gyp 158 npm uninstall node-gyp
@@ -256,7 +256,7 @@ jobs:
256 - name: Install pnpm 256 - name: Install pnpm
257 uses: pnpm/action-setup@v2.0.1 257 uses: pnpm/action-setup@v2.0.1
258 with: 258 with:
259 version: 6.14.7 259 version: 6.16.0
260 - name: Uninstall locally and reinstall global npm modules 260 - name: Uninstall locally and reinstall global npm modules
261 run: | 261 run: |
262 npm uninstall node-gyp 262 npm uninstall node-gyp
@@ -381,7 +381,7 @@ jobs:
381 - name: Install pnpm 381 - name: Install pnpm
382 uses: pnpm/action-setup@v2.0.1 382 uses: pnpm/action-setup@v2.0.1
383 with: 383 with:
384 version: 6.14.7 384 version: 6.16.0
385 - name: Uninstall locally and reinstall global npm modules 385 - name: Uninstall locally and reinstall global npm modules
386 run: | 386 run: |
387 npm uninstall node-gyp 387 npm uninstall node-gyp
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index e0c5014a8..76ad5266b 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -67,6 +67,8 @@ node -v
67v14.17.6 67v14.17.6
68npm -v 68npm -v
696.14.13 696.14.13
70pnpm -v
716.16.0
70``` 72```
71 73
72_Note:_ You can choose any package manager to manage multiple versions of `node` and `npm`. For eg, [nvm](https://github.com/nvm-sh/nvm) or [asdf](https://github.com/asdf-vm/asdf). 74_Note:_ You can choose any package manager to manage multiple versions of `node` and `npm`. For eg, [nvm](https://github.com/nvm-sh/nvm) or [asdf](https://github.com/asdf-vm/asdf).
diff --git a/Dockerfile b/Dockerfile
index 821b7a808..cb3053708 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -16,7 +16,7 @@ RUN apt-get update -y \
16 16
17WORKDIR /usr/src/ferdi 17WORKDIR /usr/src/ferdi
18 18
19RUN npm i -g pnpm@6.14.7 \ 19RUN npm i -g pnpm@6.16.0 \
20 && npm ls -g node-gyp@8.1.0 || npm i -g node-gyp@8.1.0 \ 20 && npm ls -g node-gyp@8.1.0 || npm i -g node-gyp@8.1.0 \
21 && npm ls -g lerna@4.0.0 || npm i -g lerna@4.0.0 21 && npm ls -g lerna@4.0.0 || npm i -g lerna@4.0.0
22 22