fix: moving towards pnpm

This commit is contained in:
sriram veeraghanta 2023-11-28 18:42:13 +05:30
commit 84cc2fafd2
6 changed files with 11620 additions and 13746 deletions

View File

@ -16,10 +16,10 @@ jobs:
uses: actions/checkout@v3.3.0 uses: actions/checkout@v3.3.0
- name: Setup Node.js 18.x - name: Setup Node.js 18.x
uses: actions/setup-node@v3 uses: actions/setup-node@v4
with: with:
node-version: 18.x node-version: 18.x
cache: "yarn" cache: "pnpm"
- name: Get changed files - name: Get changed files
id: changed-files id: changed-files

10
.gitignore vendored
View File

@ -72,17 +72,15 @@ package-lock.json
# yarn # yarn
.yarn .yarn
.yarnrc.yml .yarnrc.yml
yarn.lock
# lock files # secrets
package-lock.json
pnpm-lock.yaml
pnpm-workspace.yaml
.npmrc .npmrc
.secrets .secrets
# temp
tmp/ tmp/
.temp/
## packages ## packages
dist dist
.temp/

View File

@ -3,15 +3,6 @@
"version": "0.13.2", "version": "0.13.2",
"license": "AGPL-3.0", "license": "AGPL-3.0",
"private": true, "private": true,
"workspaces": [
"web",
"space",
"packages/editor/*",
"packages/eslint-config-custom",
"packages/tailwind-config-custom",
"packages/tsconfig",
"packages/ui"
],
"scripts": { "scripts": {
"build": "turbo run build", "build": "turbo run build",
"dev": "turbo run dev", "dev": "turbo run dev",
@ -34,5 +25,8 @@
"resolutions": { "resolutions": {
"@types/react": "^18.2.39" "@types/react": "^18.2.39"
}, },
"packageManager": "yarn@3.6.4" "engines": {
"node": ">=18"
},
"packageManager": "pnpm@8.11.0"
} }

11602
pnpm-lock.yaml Normal file

File diff suppressed because it is too large Load Diff

8
pnpm-workspace.yaml Normal file
View File

@ -0,0 +1,8 @@
packages:
- "web"
- "space"
- "packages/editor/*"
- "packages/eslint-config-custom"
- "packages/tailwind-config-custom"
- "packages/tsconfig"
- "packages/ui"

13728
yarn.lock

File diff suppressed because it is too large Load Diff