@equinor/fusion-framework-vite-plugin-spa 3.0.6 → 3.0.7
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/CHANGELOG.md +15 -0
- package/dist/esm/version.js +1 -1
- package/dist/html/bootstrap.js +3 -3
- package/dist/html/bootstrap.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/html/index.html.d.ts +1 -1
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
- package/src/version.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @equinor/fusion-framework-vite-plugin-spa
|
|
2
2
|
|
|
3
|
+
## 3.0.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#3932](https://github.com/equinor/fusion-framework/pull/3932) [`15aaa87`](https://github.com/equinor/fusion-framework/commit/15aaa87e6a8b391c0672db0dcdca4c1cac3b50a7) Thanks [@dependabot](https://github.com/apps/dependabot)! - Internal: update rollup build dependency from 4.52.5 to 4.55.2.
|
|
8
|
+
|
|
9
|
+
This update includes:
|
|
10
|
+
|
|
11
|
+
- Improved circular dependency handling for manual chunks
|
|
12
|
+
- Enhanced tree-shaking for Symbol properties
|
|
13
|
+
- Performance improvements via variable name caching
|
|
14
|
+
- Multiple bug fixes for build edge cases
|
|
15
|
+
|
|
16
|
+
No changes to CLI or plugin functionality or public APIs.
|
|
17
|
+
|
|
3
18
|
## 3.0.6
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/dist/esm/version.js
CHANGED
package/dist/html/bootstrap.js
CHANGED
|
@@ -45364,7 +45364,7 @@ function createReducer (actions, initial = {}) {
|
|
|
45364
45364
|
record.updated = Date.now();
|
|
45365
45365
|
record.updates ??= 0;
|
|
45366
45366
|
record.updates++;
|
|
45367
|
-
record.value =
|
|
45367
|
+
record.value = entry.value;
|
|
45368
45368
|
record.transaction = entry.transaction;
|
|
45369
45369
|
// reset the mutated timestamp
|
|
45370
45370
|
record.mutated = undefined;
|
|
@@ -45400,7 +45400,7 @@ function createReducer (actions, initial = {}) {
|
|
|
45400
45400
|
const record = state[key];
|
|
45401
45401
|
if (record) {
|
|
45402
45402
|
// Update the record with the new value and metadata.
|
|
45403
|
-
record.value =
|
|
45403
|
+
record.value = value;
|
|
45404
45404
|
record.updated = updated;
|
|
45405
45405
|
record.mutated = Date.now();
|
|
45406
45406
|
record.updates ??= 0;
|
|
@@ -47050,7 +47050,7 @@ async function registerServiceWorker(framework) {
|
|
|
47050
47050
|
}
|
|
47051
47051
|
|
|
47052
47052
|
// Generated by genversion.
|
|
47053
|
-
const version = '3.0.
|
|
47053
|
+
const version = '3.0.7';
|
|
47054
47054
|
|
|
47055
47055
|
// Allow dynamic import without vite
|
|
47056
47056
|
const importWithoutVite = (path) => import(/* @vite-ignore */ path);
|