Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update pnpm to v7.27.0 #2708

Merged
merged 3 commits into from
Feb 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ RUN . /etc/os-release \
# RUN su node -c "source /usr/local/share/nvm/nvm.sh && nvm install ${EXTRA_NODE_VERSION}"

# [Optional] Uncomment if you want to install more global node modules
RUN su node -c "npm install -g pnpm@7.26.3"
RUN su node -c "npm install -g pnpm@7.27.0"



2 changes: 1 addition & 1 deletion .gitpod.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM gitpod/workspace-mongodb

RUN sudo apt-get update && sudo apt-get install -y redis-server && sudo rm -rf /var/lib/apt/lists/*
RUN npm install -g pnpm@7.26.3
RUN npm install -g pnpm@7.27.0
2 changes: 1 addition & 1 deletion apps/api/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM nikolaik/python-nodejs:python3.10-nodejs16-alpine as dev_base

RUN npm i pm2 -g
RUN npm --no-update-notifier --no-fund --global install pnpm@7.26.3
RUN npm --no-update-notifier --no-fund --global install pnpm@7.27.0
RUN pnpm --version

WORKDIR /usr/src/app
Expand Down
2 changes: 1 addition & 1 deletion apps/inbound-mail/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM nikolaik/python-nodejs:python3.10-nodejs16-alpine as dev_base

RUN npm i pm2 -g
RUN npm --no-update-notifier --no-fund --global install pnpm@7.26.3
RUN npm --no-update-notifier --no-fund --global install pnpm@7.27.0
RUN pnpm --version

WORKDIR /usr/src/app
Expand Down
2 changes: 1 addition & 1 deletion apps/web/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM nikolaik/python-nodejs:python3.10-nodejs16-alpine
WORKDIR /usr/src/app

RUN apk add --no-cache bash
RUN npm install -g pnpm@7.26.3 --loglevel notice
RUN npm install -g pnpm@7.27.0 --loglevel notice

COPY .npmrc .
COPY package.json .
Expand Down
2 changes: 1 addition & 1 deletion apps/webhook/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM nikolaik/python-nodejs:python3.10-nodejs16-alpine as dev_base

RUN npm i pm2 -g
RUN npm --no-update-notifier --no-fund --global install pnpm@7.26.3
RUN npm --no-update-notifier --no-fund --global install pnpm@7.27.0
RUN pnpm --version

WORKDIR /usr/src/app
Expand Down
2 changes: 1 addition & 1 deletion apps/widget/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM nikolaik/python-nodejs:python3.10-nodejs16-alpine
WORKDIR /usr/src/app

RUN apk add --no-cache bash
RUN npm install -g pnpm@7.26.3 --loglevel notice
RUN npm install -g pnpm@7.27.0 --loglevel notice

COPY .npmrc .
COPY package.json .
Expand Down
2 changes: 1 addition & 1 deletion apps/ws/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM node:16-alpine3.16

WORKDIR /usr/src/app

RUN npm install -g pnpm@7.26.3 --loglevel notice
RUN npm install -g pnpm@7.27.0 --loglevel notice
RUN npm i pm2 -g

COPY .npmrc .
Expand Down
2 changes: 1 addition & 1 deletion libs/embed/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM nikolaik/python-nodejs:python3.10-nodejs16-alpine

WORKDIR /usr/src/app

RUN npm install -g pnpm@7.26.3 --loglevel notice --force
RUN npm install -g pnpm@7.27.0 --loglevel notice --force

COPY .npmrc .
COPY package.json .
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "novuhq",
"private": true,
"packageManager": "pnpm@7.26.3",
"packageManager": "pnpm@7.27.0",
"scripts": {
"bootstrap": "npm run setup:dev",
"start": "npm run jarvis",
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"publish": "lerna publish from-package",
"setup:project": "npx --yes pnpm@7.26.3 i && node scripts/setup-env-files.js && pnpm build",
"setup:project": "npx --yes pnpm@7.27.0 i && node scripts/setup-env-files.js && pnpm build",
"install:docs": "pnpm install --filter @novu/docs",
"clean": "lerna clean --yes && npm run prebuild",
"commit": "cz",
Expand Down Expand Up @@ -124,7 +124,7 @@
"meow": "^10.1.1",
"mississippi": "^4.0.0",
"ora": "~5.4.1",
"pnpm": "7.26.3",
"pnpm": "7.27.0",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"shelljs": "^0.8.5",
Expand Down Expand Up @@ -182,7 +182,7 @@
},
"engines": {
"node": ">=13.0.0 <17.0.0",
"pnpm": "7.26.3"
"pnpm": "^7.26.0"
},
"dependencies": {
"nx": "^14.5.10",
Expand Down
Loading