Skip to content

Commit

Permalink
use packageManager field
Browse files Browse the repository at this point in the history
  • Loading branch information
holic committed May 15, 2024
1 parent d0ff96b commit 46c7386
Show file tree
Hide file tree
Showing 11 changed files with 19 additions and 12 deletions.
2 changes: 0 additions & 2 deletions .github/actions/setup-prerequisites/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ runs:
steps:
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8.x

- name: Setup node
uses: actions/setup-node@v3
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ RUN curl -L https://foundry.paradigm.xyz/ | bash && \
# pnpm
ENV PNPM_HOME="/pnpm"
ENV PATH="${PATH}:${PNPM_HOME}"
RUN npm install pnpm@9 --global && pnpm --version
RUN npm install pnpm@9.1.1 --global && pnpm --version

FROM base AS mud
COPY . /app
Expand Down
3 changes: 2 additions & 1 deletion e2e/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@
"devDependencies": {
"@playwright/test": "1.35.1"
},
"packageManager": "[email protected]",
"engines": {
"node": "^18.20.1",
"pnpm": "9.x"
"pnpm": "^9.1.1"
}
}
3 changes: 2 additions & 1 deletion examples/minimal/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@
"mprocs": "^0.6.4",
"typescript": "5.4.2"
},
"packageManager": "[email protected]",
"engines": {
"node": "^18.20.1",
"pnpm": "9.x"
"pnpm": "^9.1.1"
}
}
3 changes: 2 additions & 1 deletion examples/multiple-accounts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@
"rimraf": "^3.0.2",
"typescript": "5.4.2"
},
"packageManager": "[email protected]",
"engines": {
"node": "^18.20.1",
"pnpm": "9.x"
"pnpm": "^9.1.1"
}
}
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,9 @@
"turbo": "^1.9.3",
"typescript": "5.4.2"
},
"packageManager": "[email protected]",
"engines": {
"node": "^18.20.1",
"pnpm": "9.x"
"pnpm": "^9.1.1"
}
}
3 changes: 2 additions & 1 deletion templates/phaser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@
"rimraf": "^3.0.2",
"typescript": "5.4.2"
},
"packageManager": "[email protected]",
"engines": {
"node": "^18.20.1",
"pnpm": "9.x"
"pnpm": "^9.1.1"
}
}
3 changes: 2 additions & 1 deletion templates/react-ecs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@
"rimraf": "^3.0.2",
"typescript": "5.4.2"
},
"packageManager": "[email protected]",
"engines": {
"node": "^18.20.1",
"pnpm": "9.x"
"pnpm": "^9.1.1"
}
}
3 changes: 2 additions & 1 deletion templates/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@
"rimraf": "^3.0.2",
"typescript": "5.4.2"
},
"packageManager": "[email protected]",
"engines": {
"node": "^18.20.1",
"pnpm": "9.x"
"pnpm": "^9.1.1"
}
}
3 changes: 2 additions & 1 deletion templates/threejs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@
"rimraf": "^3.0.2",
"typescript": "5.4.2"
},
"packageManager": "[email protected]",
"engines": {
"node": "^18.20.1",
"pnpm": "9.x"
"pnpm": "^9.1.1"
}
}
3 changes: 2 additions & 1 deletion templates/vanilla/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@
"rimraf": "^3.0.2",
"typescript": "5.4.2"
},
"packageManager": "[email protected]",
"engines": {
"node": "^18.20.1",
"pnpm": "9.x"
"pnpm": "^9.1.1"
}
}

0 comments on commit 46c7386

Please sign in to comment.