You've already forked woodpecker
mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2026-05-22 08:55:42 +02:00
Replace yarn with pnpm (#1240)
Should resolve startup issues in gitpod and be a lot faster 🚀
This commit is contained in:
@@ -5,8 +5,8 @@
|
||||
"main": "dist/index.js",
|
||||
"typings": "dist/index.d.ts",
|
||||
"scripts": {
|
||||
"start": "yarn run style && concurrently 'tsc -w' 'tsc -w -p tsconfig.jsx.json'",
|
||||
"build": "yarn run style && tsc && tsc -p tsconfig.jsx.json",
|
||||
"start": "pnpm run style && concurrently 'tsc -w' 'tsc -w -p tsconfig.jsx.json'",
|
||||
"build": "pnpm run style && tsc && tsc -p tsconfig.jsx.json",
|
||||
"style": "mkdir -p dist/theme/ && cp src/theme/style.css dist/theme/style.css"
|
||||
},
|
||||
"devDependencies": {
|
||||
@@ -15,9 +15,11 @@
|
||||
"@docusaurus/types": "^2.1.0",
|
||||
"@tsconfig/docusaurus": "^1.0.6",
|
||||
"@types/marked": "^4.0.7",
|
||||
"@types/node": "^16.0.0",
|
||||
"axios": "^0.27.2",
|
||||
"concurrently": "^7.4.0",
|
||||
"marked": "^4.1.0",
|
||||
"tslib": "^2.4.0",
|
||||
"typescript": "^4.7.4"
|
||||
},
|
||||
"peerDependencies": {
|
||||
@@ -27,5 +29,13 @@
|
||||
"dependencies": {
|
||||
"fuse.js": "^6.6.2",
|
||||
"yaml": "^2.1.1"
|
||||
},
|
||||
"pnpm": {
|
||||
"peerDependencyRules": {
|
||||
"ignoreMissing": [
|
||||
"react",
|
||||
"react-dom"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user