Skip to content

Commit 6996d8e

Browse files
fix(package.json): build-export script (#148)
### Related Ticket(s) none ### Description build failing without setting `SASS_PATH=node_modules:src`. Updated it to be the same as just the `build` script
1 parent 17a939c commit 6996d8e

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
"build": "cross-env SASS_PATH=node_modules:src next build",
1818
"export": "next export",
1919
"start": "node server.js",
20-
"build-export": "next build && next export",
20+
"build-export": "cross-env SASS_PATH=node_modules:src next build && next export",
2121
"lint": "eslint pages",
2222
"lint:styles": "stylelint '**/*.{css,scss}' --config ./packages/stylelint-config-ibmdotcom",
2323
"prepare": "husky install",

0 commit comments

Comments
 (0)