@fluxscape/react-runtime 1.0.8 → 1.0.10
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/build/preview/build/fluxscape.index.preview.js +2 -2
- package/build/preview/build/fluxscape.index.preview.js.map +1 -1
- package/build/preview/build/index.html +15 -6
- package/build/production/build/fluxscape.index.production.js +2 -2
- package/build/production/build/fluxscape.index.production.js.map +1 -1
- package/dist/index.es.js +3 -3
- package/dist/index.es.js.map +1 -1
- package/dist/index.iife.js +2 -2
- package/dist/index.iife.js.map +1 -1
- package/fluxscape.json +1 -2
- package/package.json +4 -3
- package/build/preview/build/index.js.liquid +0 -1
- package/build/preview/public/global.d.ts.keep +0 -721
package/fluxscape.json
CHANGED
|
@@ -26,8 +26,7 @@
|
|
|
26
26
|
"build/preview/public/react-dom.production.min.js",
|
|
27
27
|
"build/preview/build/react-runtime.css",
|
|
28
28
|
"build/preview/build/fluxscape.index.preview.js",
|
|
29
|
-
"build/preview/build/fluxscape.index.preview.js.map"
|
|
30
|
-
"build/preview/build/index.js.liquid"
|
|
29
|
+
"build/preview/build/fluxscape.index.preview.js.map"
|
|
31
30
|
]
|
|
32
31
|
}
|
|
33
32
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluxscape/react-runtime",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.10",
|
|
4
4
|
"main": "./dist/index.iife.js",
|
|
5
5
|
"module": "./dist/index.es.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -22,13 +22,14 @@
|
|
|
22
22
|
"stream-browserify": "^3.0.0",
|
|
23
23
|
"timers-browserify": "^2.0.12",
|
|
24
24
|
"webfontloader": "^1.6.28",
|
|
25
|
-
"@fluxscape/runtime": "1.0.
|
|
25
|
+
"@fluxscape/runtime": "1.0.4"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@types/jest": "^27.5.1",
|
|
29
29
|
"@types/react": "^19.1.8",
|
|
30
30
|
"@types/react-dom": "^19.1.6",
|
|
31
31
|
"jest": "^28.1.0",
|
|
32
|
+
"typescript": "^5.9.2",
|
|
32
33
|
"vite": "^7.0.0",
|
|
33
34
|
"vite-plugin-static-copy": "^3.0.2"
|
|
34
35
|
},
|
|
@@ -37,7 +38,7 @@
|
|
|
37
38
|
"build": "pnpm run build:base && pnpm run build:preview && pnpm run build:production",
|
|
38
39
|
"build:preview": "vite build --config vite.config.preview.js",
|
|
39
40
|
"build:production": "vite build --config vite.config.production.js",
|
|
40
|
-
"build:base": "vite build && (tsc --emitDeclarationOnly ||
|
|
41
|
+
"build:base": "vite build && (tsc --emitDeclarationOnly || echo \"TypeScript errors ignored\")",
|
|
41
42
|
"test": "jest"
|
|
42
43
|
}
|
|
43
44
|
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
window.projectData = {{ projectData | json }};
|