Skip to content

Commit

Permalink
replace single '' with \"\"in build scripts (#282)
Browse files Browse the repository at this point in the history
  • Loading branch information
WebMechanic committed Sep 19, 2022
1 parent afdadac commit 006e64d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -137,10 +137,10 @@
"bundle": "concurrently npm:lib:* -m 25 && concurrently npm:shadow:* -m 25 && npm run module:js",
"bundle:pre-edit": "json -I -f package.json -e \"this.unpkg=''\"",
"bundle:post-edit": "json -I -f package.json -e \"this.unpkg='open-props.min.css'\"",
"gen:op": "cd build && node props.js '' true",
"gen:nowhere": "cd build && node props.js '' false",
"gen:shadowdom": "cd build && node props.js '' false ':host' 'shadow'",
"gen:prefixed": "cd build && node props.js 'op' true",
"gen:op": "cd build && node props.js \"\" true",
"gen:nowhere": "cd build && node props \"\" false",
"gen:shadowdom": "cd build && node props \"\" false \":host\" \"shadow\"",
"gen:prefixed": "cd build && node props.js \"op\" true",
"module:js": "npm run bundle:pre-edit && microbundle --no-sourcemap && npm run bundle:post-edit",
"lib:all": "postcss src/index.css -o open-props.min.css",
"lib:normalize": "postcss src/extra/normalize.css -o normalize.min.css && node ./build/extras.js",
Expand Down

0 comments on commit 006e64d

Please sign in to comment.