balibabu
commited on
Commit
·
a5476f5
1
Parent(s):
e618152
Fix: Limit node version #3547 (#3563)
Browse files### What problem does this PR solve?
Fix: Limit node version #3547
### Type of change
- [x] Bug Fix (non-breaking change which fixes an issue)
- web/.npmrc +1 -1
- web/package-lock.json +3 -0
- web/package.json +3 -0
web/.npmrc
CHANGED
@@ -1,2 +1,2 @@
|
|
|
|
1 |
registry=https://registry.npmmirror.com/
|
2 |
-
|
|
|
1 |
+
engine-strict=true
|
2 |
registry=https://registry.npmmirror.com/
|
|
web/package-lock.json
CHANGED
@@ -106,6 +106,9 @@
|
|
106 |
"ts-node": "^10.9.2",
|
107 |
"typescript": "^5.0.3",
|
108 |
"umi-plugin-icons": "^0.1.1"
|
|
|
|
|
|
|
109 |
}
|
110 |
},
|
111 |
"node_modules/@aashutoshrathi/word-wrap": {
|
|
|
106 |
"ts-node": "^10.9.2",
|
107 |
"typescript": "^5.0.3",
|
108 |
"umi-plugin-icons": "^0.1.1"
|
109 |
+
},
|
110 |
+
"engines": {
|
111 |
+
"node": ">=18.20.4"
|
112 |
}
|
113 |
},
|
114 |
"node_modules/@aashutoshrathi/word-wrap": {
|
web/package.json
CHANGED
@@ -117,5 +117,8 @@
|
|
117 |
"ts-node": "^10.9.2",
|
118 |
"typescript": "^5.0.3",
|
119 |
"umi-plugin-icons": "^0.1.1"
|
|
|
|
|
|
|
120 |
}
|
121 |
}
|
|
|
117 |
"ts-node": "^10.9.2",
|
118 |
"typescript": "^5.0.3",
|
119 |
"umi-plugin-icons": "^0.1.1"
|
120 |
+
},
|
121 |
+
"engines": {
|
122 |
+
"node": ">=18.20.4"
|
123 |
}
|
124 |
}
|