2
0
mirror of https://github.com/tenrok/vue-ganttastic.git synced 2026-06-18 21:30:35 +03:00

fix: nodejs 17 compatibility

This commit is contained in:
2021-12-20 10:50:38 +03:00
parent d2cfbbfe0c
commit 0dc4d06055
+4 -4
View File
@@ -40,10 +40,10 @@
"url": "git+https://github.com/tenrok/vue-ganttastic.git"
},
"scripts": {
"serve": "vue-cli-service serve --open",
"demo:build": "vue-cli-service build",
"lib:build": "vue-cli-service build --target lib --name vue-ganttastic lib/index.js",
"lint": "vue-cli-service lint"
"serve": "set NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --open",
"demo:build": "set NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service build",
"lib:build": "set NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service build --target lib --name vue-ganttastic lib/index.js",
"lint": "set NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service lint"
},
"dependencies": {
"vue": "^2.6.12"