Skip to content

Commit

Permalink
build: fix run-p glob matching for yarn > 2 ..
Browse files Browse the repository at this point in the history
  • Loading branch information
CanRau committed Feb 19, 2022
1 parent d202a9e commit ea10184
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion examples/sass/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"build": "run-s build:*",
"dev:remix": "remix dev",
"dev:css": "sass styles/:app/styles/ --watch ",
"dev": "run-p dev:*",
"dev": "run-p 'dev:*'",
"postinstall": "remix setup node",
"start": "remix-serve build"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/create-remix/templates/arc-stack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"build": "remix build",
"dev:remix": "remix watch",
"dev:arc": "arc sandbox",
"dev": "cross-env ARC_LOCAL=1 ARC_TABLES_PORT=5555 run-p dev:*"
"dev": "cross-env ARC_LOCAL=1 ARC_TABLES_PORT=5555 run-p 'dev:*'"
},
"dependencies": {
"@architect/functions": "^4.1.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/create-remix/templates/arc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"build": "cross-env NODE_ENV=production remix build",
"dev:remix": "cross-env NODE_ENV=development remix watch",
"dev:arc": "cross-env NODE_ENV=development arc sandbox",
"dev": "cross-env NODE_ENV=development remix build && run-p dev:*",
"dev": "cross-env NODE_ENV=development remix build && run-p 'dev:*'",
"start": "cross-env NODE_ENV=production arc sandbox"
},
"dependencies": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"build": "cross-env NODE_ENV=production remix build",
"dev:remix": "cross-env NODE_ENV=development remix watch",
"dev:wrangler": "cross-env NODE_ENV=development wrangler pages dev ./public",
"dev": "cross-env NODE_ENV=development remix build && run-p dev:*",
"dev": "cross-env NODE_ENV=development remix build && run-p 'dev:*'",
"start": "cross-env NODE_ENV=production npm run dev:wrangler"
},
"dependencies": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"build": "cross-env NODE_ENV=production remix build",
"dev:remix": "cross-env NODE_ENV=development remix watch",
"dev:miniflare": "cross-env NODE_ENV=development miniflare ./build/index.js --watch",
"dev": "cross-env NODE_ENV=development remix build && run-p dev:*",
"dev": "cross-env NODE_ENV=development remix build && run-p 'dev:*'",
"start": "cross-env NODE_ENV=production miniflare ./build/index.js",
"deploy": "npm run build && wrangler publish"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/create-remix/templates/deno/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"build": "cross-env NODE_ENV=production remix build",
"dev:remix": "cross-env NODE_ENV=development remix watch",
"dev:deno": "cross-env NODE_ENV=development deno run --watch --allow-net --allow-read --allow-env ./build/index.js",
"dev": "cross-env NODE_ENV=development remix build && run-p dev:*",
"dev": "cross-env NODE_ENV=development remix build && run-p 'dev:*'",
"start": "cross-env NODE_ENV=production deno run --allow-net --allow-read --allow-env ./build/index.js"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/create-remix/templates/express/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"scripts": {
"postinstall": "remix setup node",
"build": "cross-env NODE_ENV=production remix build",
"dev": "cross-env NODE_ENV=development remix build && run-p dev:*",
"dev": "cross-env NODE_ENV=development remix build && run-p 'dev:*'",
"dev:remix": "cross-env NODE_ENV=development remix watch",
"dev:node": "cross-env NODE_ENV=development nodemon ./build/index.js",
"start": "cross-env NODE_ENV=production node ./build/index.js"
Expand Down

0 comments on commit ea10184

Please sign in to comment.