@aelionsdk/vite-plugin 1.0.0-rc.1 → 1.1.0-rc.1
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/README.md +2 -2
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -53,9 +53,9 @@ Webpack 5-compatible hooks exposed by Rspack. Pass `runtimeAssets` to `Aelion.cr
|
|
|
53
53
|
|
|
54
54
|
For a custom build or CDN copy step, use `loadAelionRuntimeAssets(outputDirectory)`. For an
|
|
55
55
|
already-deployed versioned CDN directory, use
|
|
56
|
-
`aelionRuntimeAssetUrls('https://cdn.example/sdk/
|
|
56
|
+
`aelionRuntimeAssetUrls('https://cdn.example/sdk/1.1.0-rc.1/')`; keep application modules and all four
|
|
57
57
|
runtime entries on the same SDK version.
|
|
58
58
|
|
|
59
59
|
Production pages should use HTTPS. For the SharedArrayBuffer audio path, also return `Cross-Origin-Opener-Policy: same-origin` and `Cross-Origin-Embedder-Policy: require-corp`. CSP must allow same-origin `worker-src` and `script-src`.
|
|
60
60
|
|
|
61
|
-
This package is part of [AelionSDK](https://github.com/FoyonaCZY/AelionSDK). The `1.
|
|
61
|
+
This package is part of [AelionSDK](https://github.com/FoyonaCZY/AelionSDK). The `1.1.0-rc.1` API may change before the first stable release.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aelionsdk/vite-plugin",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.1.0-rc.1",
|
|
4
|
+
"description": "Build integrations for AelionSDK Worker and AudioWorklet assets",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -32,16 +32,16 @@
|
|
|
32
32
|
"!dist/.tsbuildinfo"
|
|
33
33
|
],
|
|
34
34
|
"engines": {
|
|
35
|
-
"node": ">=
|
|
35
|
+
"node": ">=24 <25"
|
|
36
36
|
},
|
|
37
37
|
"publishConfig": {
|
|
38
38
|
"access": "public",
|
|
39
39
|
"provenance": true
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@aelionsdk/audio": "1.
|
|
43
|
-
"@aelionsdk/export": "1.
|
|
44
|
-
"@aelionsdk/renderer-worker": "1.
|
|
42
|
+
"@aelionsdk/audio": "1.1.0-rc.1",
|
|
43
|
+
"@aelionsdk/export": "1.1.0-rc.1",
|
|
44
|
+
"@aelionsdk/renderer-worker": "1.1.0-rc.1"
|
|
45
45
|
},
|
|
46
46
|
"peerDependencies": {
|
|
47
47
|
"vite": "^7.3.6"
|