Skip to content

Commit 2cd536f

Browse files
committed
fixes asset cp command for gh action
1 parent f0d780d commit 2cd536f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

centering/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"prod:server": "browser-sync dist --no-open --no-notify --no-ghost-mode",
1616
"build:pre:js": "rollup -c --environment NODE_ENV:production",
1717
"build:pre:css": "postcss app/css/index.css -o dist/bundle.css --env production",
18-
"build:post:copy": "cp app/{index.html,favicon.ico,favicon.svg} dist/",
18+
"build:post:copy": "cp app/index.html dist/ && cp app/favicon.ico dist/ && cp app/favicon.svg dist/",
1919
"build": "rm -rf dist && concurrently npm:build:pre:* && concurrently npm:build:post:*",
2020
"start": "concurrently --kill-others npm:dev:*",
2121
"production": "npm run build && npm run prod:server"

sidenav/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"prod:server": "browser-sync dist --no-open --no-notify --no-ghost-mode",
1616
"build:pre:js": "rollup -c --environment NODE_ENV:production",
1717
"build:pre:css": "postcss app/css/index.css -o dist/bundle.css --env production",
18-
"build:post:copy": "cp app/{index.html,favicon.ico,favicon.svg} dist/",
18+
"build:post:copy": "cp app/index.html dist/ && cp app/favicon.ico dist/ && cp app/favicon.svg dist/",
1919
"build": "rm -rf dist && concurrently npm:build:pre:* && concurrently npm:build:post:*",
2020
"start": "concurrently --kill-others npm:dev:*",
2121
"production": "npm run build && npm run prod:server"

tabs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"prod:server": "browser-sync dist --no-open --no-notify --no-ghost-mode",
1616
"build:pre:js": "rollup -c --environment NODE_ENV:production",
1717
"build:pre:css": "postcss app/css/index.css -o dist/bundle.css --env production",
18-
"build:post:copy": "cp app/{index.html,favicon.ico,favicon.svg} dist/",
18+
"build:post:copy": "cp app/index.html dist/ && cp app/favicon.ico dist/ && cp app/favicon.svg dist/",
1919
"build": "rimraf dist && concurrently npm:build:pre:* && concurrently npm:build:post:*",
2020
"start": "concurrently --kill-others npm:dev:*",
2121
"production": "npm run build && npm run prod:server"

0 commit comments

Comments
 (0)