Skip to content

Commit

Permalink
Fix: Issues with yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
jonnitto committed Oct 17, 2023
1 parent 1c165da commit cc061f1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Installer/Distribution/Defaults/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@
"setPackageManager": "node Build/Carbon.Pipeline/setPackageManager.js",
"postinstall": "touch ./node_modules/.metadata_never_index; mkdir -p ./Packages; touch ./Packages/.metadata_never_index",
"showConfig": "node Build/Carbon.Pipeline/showConfig.mjs",
"build": "concurrently -r pnpm:build:*",
"build": "concurrently -r 'pnpm:build:*'",
"build:js": "node Build/Carbon.Pipeline/esbuild.mjs --production",
"build:css": "node Build/Carbon.Pipeline/postcss.mjs --production",
"dev": "concurrently -r pnpm:dev:*",
"dev": "concurrently -r 'pnpm:dev:*'",
"dev:js": "node Build/Carbon.Pipeline/esbuild.mjs",
"dev:css": "node Build/Carbon.Pipeline/postcss.mjs",
"watch": "concurrently -r pnpm:watch:*",
"watch": "concurrently -r 'pnpm:watch:*'",
"watch:js": "node Build/Carbon.Pipeline/esbuild.mjs --watch",
"watch:css": "node Build/Carbon.Pipeline/postcss.mjs --watch",
"pipeline:build": "concurrently -r pnpm:build:*",
"pipeline": "pnpm install;concurrently -r pnpm:pipeline:*"
"pipeline:build": "concurrently -r 'pnpm:build:*'",
"pipeline": "pnpm install;concurrently -r 'pnpm:pipeline:*'"
},
"devDependencies": {
"autoprefixer": "^10.4.16",
Expand Down
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ test-pnpm:
test-yarn:
@rm -rf node_modules
@yarn setPackageManager yarn
@yarn set version stable
@yarn install
@yarn add svelte svelte-preprocess esbuild-svelte vue esbuild-plugin-vue3 sass node-sass-tilde-importer
@yarn showConfig
Expand Down

0 comments on commit cc061f1

Please sign in to comment.