@abi-software/simulationvuer 4.2.0 → 4.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +9 -3
- package/src/assets/fonts.scss +2 -0
- package/src/assets/styles.scss +0 -2
- package/src/components/index.js +1 -0
- package/src/main.js +1 -0
- package/vite.config.js +1 -2
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abi-software/simulationvuer",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.3.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"engines": {
|
|
6
|
-
"node": "
|
|
6
|
+
"node": "^24.20.0"
|
|
7
7
|
},
|
|
8
8
|
"scripts": {
|
|
9
9
|
"serve": "vite serve --host --force",
|
|
@@ -94,5 +94,11 @@
|
|
|
94
94
|
"bugs": {
|
|
95
95
|
"url": "https://github.com/ABI-Software/simulationvuer/issues"
|
|
96
96
|
},
|
|
97
|
-
"homepage": "https://github.com/ABI-Software/simulationvuer#readme"
|
|
97
|
+
"homepage": "https://github.com/ABI-Software/simulationvuer#readme",
|
|
98
|
+
"allowScripts": {
|
|
99
|
+
"@parcel/watcher@2.6.0": true,
|
|
100
|
+
"es5-ext@0.10.64": true,
|
|
101
|
+
"fsevents@2.3.3": true,
|
|
102
|
+
"esbuild@0.21.5": true
|
|
103
|
+
}
|
|
98
104
|
}
|
package/src/assets/styles.scss
CHANGED
package/src/components/index.js
CHANGED
package/src/main.js
CHANGED
package/vite.config.js
CHANGED
|
@@ -187,13 +187,12 @@ export default defineConfig(({ command, mode }) => {
|
|
|
187
187
|
rollupOptions: {
|
|
188
188
|
external: [
|
|
189
189
|
"vue",
|
|
190
|
-
"@abi-software/svg-sprite",
|
|
191
190
|
"@abi-software/plotvuer",
|
|
191
|
+
"@abi-software/plotvuer/dist/style.css",
|
|
192
192
|
],
|
|
193
193
|
output: {
|
|
194
194
|
globals: {
|
|
195
195
|
vue: "Vue",
|
|
196
|
-
"@abi-software/svg-sprite": "@abi-software/svg-sprite",
|
|
197
196
|
"@abi-software/plotvuer": "@abi-software/plotvuer",
|
|
198
197
|
},
|
|
199
198
|
// keep css output name stable for the "./dist/style.css" export/import paths
|