mirror of
https://github.com/ershisan99/DevToysWeb.git
synced 2025-12-16 12:32:48 +00:00
chore(dev): use pnpm instead of Yarn v1
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -18,9 +18,6 @@ build
|
|||||||
*.pem
|
*.pem
|
||||||
|
|
||||||
# debug
|
# debug
|
||||||
npm-debug.log*
|
|
||||||
yarn-debug.log*
|
|
||||||
yarn-error.log*
|
|
||||||
.pnpm-debug.log*
|
.pnpm-debug.log*
|
||||||
|
|
||||||
# local env files
|
# local env files
|
||||||
|
|||||||
@@ -1,12 +1,11 @@
|
|||||||
cache
|
cache
|
||||||
.cache
|
.cache
|
||||||
package.json
|
package.json
|
||||||
package-lock.json
|
|
||||||
public
|
public
|
||||||
CHANGELOG.md
|
CHANGELOG.md
|
||||||
.yarn
|
|
||||||
dist
|
dist
|
||||||
node_modules
|
node_modules
|
||||||
.next
|
.next
|
||||||
build
|
build
|
||||||
.contentlayer
|
.contentlayer
|
||||||
|
pnpm-lock.yaml
|
||||||
|
|||||||
10
package.json
10
package.json
@@ -3,20 +3,20 @@
|
|||||||
"private": true,
|
"private": true,
|
||||||
"volta": {
|
"volta": {
|
||||||
"node": "18.16.0",
|
"node": "18.16.0",
|
||||||
"yarn": "1.22.19"
|
"pnpm": "8.5.1"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "next dev",
|
"dev": "next dev",
|
||||||
"build": "next build",
|
"build": "next build",
|
||||||
"start": "next start",
|
"start": "next start",
|
||||||
"ci": "yarn typecheck && yarn lint && yarn format:check",
|
"check": "pnpm typecheck && pnpm lint && pnpm format:check",
|
||||||
"fix": "yarn lint:fix && yarn format:write",
|
"fix": "pnpm lint:fix && pnpm format:write",
|
||||||
"lint": "next lint",
|
"lint": "next lint",
|
||||||
"lint:fix": "next lint --fix",
|
"lint:fix": "next lint --fix",
|
||||||
"preview": "next build && next start",
|
"preview": "next build && next start",
|
||||||
"typecheck": "tsc --noEmit",
|
"typecheck": "tsc --noEmit",
|
||||||
"format:write": "yarn format --write",
|
"format:write": "pnpm format --write",
|
||||||
"format:check": "yarn format --check",
|
"format:check": "pnpm format --check",
|
||||||
"format": "prettier \"**/*.{js,jsx,ts,tsx,css,json,md}\" --cache"
|
"format": "prettier \"**/*.{js,jsx,ts,tsx,css,json,md}\" --cache"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
4571
pnpm-lock.yaml
generated
Normal file
4571
pnpm-lock.yaml
generated
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user