Skip to content

Commit c4db799

Browse files
fix: copy options json file over during build
when publishing, then options.json file is not copied into the dist directory causing anything using the release candidate to fail
1 parent a5d9460 commit c4db799

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"lint:js": "eslint --cache src test",
1818
"lint": "npm-run-all -l -p \"lint:**\"",
1919
"prepare": "npm run build",
20-
"build": "del dist && babel src -d dist",
20+
"build": "del dist && babel src -d dist && cd src; cp options.json ../dist",
2121
"release": "standard-version",
2222
"security": "npm audit",
2323
"test:only": "cross-env NODE_ENV=test jest",

0 commit comments

Comments
 (0)