Replies: 3 comments
-
Like this, it could even be configurable: {
"config": {
"packageManager": "pnpm"
},
"scripts": {
"postinstall": "touch ./node_modules/.metadata_never_index; mkdir ./Packages; touch ./Packages/.metadata_never_index",
"showConfig": "node Build/Carbon.Pipeline/showConfig.mjs",
"build": "concurrently -r $npm_package_config_packageManager:build:*",
"build:js": "node Build/Carbon.Pipeline/esbuild.mjs --production",
"build:css": "node Build/Carbon.Pipeline/postcss.mjs --production",
"dev": "concurrently -r $npm_package_config_packageManager:dev:*",
"dev:js": "node Build/Carbon.Pipeline/esbuild.mjs",
"dev:css": "node Build/Carbon.Pipeline/postcss.mjs",
"watch": "concurrently -r $npm_package_config_packageManager:watch:*",
"watch:js": "node Build/Carbon.Pipeline/esbuild.mjs --watch",
"watch:css": "node Build/Carbon.Pipeline/postcss.mjs --watch",
"pipeline": "$npm_package_config_packageManager install;concurrently -r $npm_package_config_packageManager:pipeline:*;$npm_package_config_packageManager build"
}
} |
Beta Was this translation helpful? Give feedback.
0 replies
-
Already made a PR: #18 |
Beta Was this translation helpful? Give feedback.
0 replies
-
On a blank installation |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
pnpm seems to be an ultra-fast alternative to yarn…
What do you think?
Beta Was this translation helpful? Give feedback.
All reactions