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

[tools] Move to pnpm #146

Merged
merged 3 commits into from
Feb 4, 2024
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
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@
/tools-public/toolpad/.generated/
/tools-public/toolpad/**/*.yml
node_modules
pnpm-lock.yaml
2 changes: 1 addition & 1 deletion render.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ services:
name: tools-public
env: node
rootDir: tools-public
buildCommand: yarn && yarn build
buildCommand: pnpm install && pnpm build
startCommand: node_modules/.bin/toolpad start
pullRequestPreviewsEnabled: true
plan: starter
Expand Down
3 changes: 2 additions & 1 deletion tools-public/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"name": "tools-public",
"version": "0.1.1",
"version": "0.1.0",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "toolpad dev --port 3005",
"build": "toolpad build",
"start": "toolpad start"
Expand Down
Loading
Loading