Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
Temporary OpenSSL legacy mode for Node
  • Loading branch information
annda committed Nov 1, 2023
1 parent 5bf58b3 commit 899dea9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@
"webpack-cli": "^3.1.2"
},
"scripts": {
"dev": "webpack -d",
"watch": "webpack -dw",
"dev": "export NODE_OPTIONS=--openssl-legacy-provider && webpack -d",
"watch": "export NODE_OPTIONS=--openssl-legacy-provider && webpack -dw",
"test": "jest",
"build": "webpack -p",
"build": "export NODE_OPTIONS=--openssl-legacy-provider && webpack -p",
"eslint": "NODE_ENV=production eslint script/",
"stylelint": "stylelint *.less --syntax less",
"lint": "yarn eslint && yarn stylelint"
Expand Down

0 comments on commit 899dea9

Please sign in to comment.