Skip to content

Commit

Permalink
🔧 Specify node v18 engine in package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
slaweet committed Feb 27, 2023
1 parent 2761485 commit 485e917
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@
"name": "moving-motivators",
"version": "0.1.0",
"private": true,
"engines": {
"node": "18.x"
},
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"serve": "NODE_OPTIONS=--openssl-legacy-provider vue-cli-service serve; # TODO Don't use --openssl-legacy-provider in any of the scripts, here's why: https://stackoverflow.com/a/73027407/2080716 ",
"build": "NODE_OPTIONS=--openssl-legacy-provider vue-cli-service build",
"test": "vue-cli-service test:unit",
"eslint": "vue-cli-service lint"
},
Expand Down

0 comments on commit 485e917

Please sign in to comment.