@equinor/fusion-framework-vite-plugin-spa 1.0.0-next.3 → 1.0.0-next.5
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 +29 -0
- package/dist/bin/_commonjsHelpers-BFTU3MAI.js +8 -0
- package/dist/bin/_commonjsHelpers-BFTU3MAI.js.map +1 -0
- package/dist/bin/html/bootstrap.js +32670 -0
- package/dist/bin/html/bootstrap.js.map +1 -0
- package/dist/bin/html/sw.js +171 -0
- package/dist/bin/html/sw.js.map +1 -0
- package/dist/bin/index.js +20883 -0
- package/dist/bin/index.js.map +1 -0
- package/dist/esm/version.js +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 +13 -14
- package/rollup.config.js +22 -0
- package/src/version.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# @equinor/fusion-framework-vite-plugin-spa
|
|
2
2
|
|
|
3
|
+
## 1.0.0-next.5
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#3075](https://github.com/equinor/fusion-framework/pull/3075) [`ea96493`](https://github.com/equinor/fusion-framework/commit/ea96493d95336f682e31a7b63161783ae7c99a63) Thanks [@odinr](https://github.com/odinr)! - Refactor build output and entrypoints for SPA Vite plugin:
|
|
8
|
+
|
|
9
|
+
- Change main export entrypoint to `./dist/bin/index.js` (was `./dist/esm/index.js`).
|
|
10
|
+
- Remove the `./html` export subpath.
|
|
11
|
+
- Update Rollup config to bundle from `dist/esm` to `dist/bin` and adjust input/output accordingly.
|
|
12
|
+
- Remove `postbuild` script and add `prebuild` script for TypeScript project references build.
|
|
13
|
+
- Minor formatting improvements in `package.json`.
|
|
14
|
+
|
|
15
|
+
These changes improve the build pipeline and clarify the published entrypoints for consumers.
|
|
16
|
+
|
|
17
|
+
## 1.0.0-next.4
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- [#3075](https://github.com/equinor/fusion-framework/pull/3075) [`8870e73`](https://github.com/equinor/fusion-framework/commit/8870e73bd6d4141142c69c11c67b5b154bc80023) Thanks [@odinr](https://github.com/odinr)! - Update build system and dependencies:
|
|
22
|
+
|
|
23
|
+
- Switch build script to use Rollup with a new `rollup.config.js` for ESM output
|
|
24
|
+
- Add postbuild script to emit TypeScript declarations
|
|
25
|
+
- Move all dependencies to devDependencies for clarity
|
|
26
|
+
- Add and update Rollup-related devDependencies (including plugins and types)
|
|
27
|
+
- Update `pnpm-lock.yaml` to reflect new and updated dependencies
|
|
28
|
+
- Minor formatting and consistency improvements in `package.json` and `tsconfig.json`
|
|
29
|
+
|
|
30
|
+
These changes modernize the build process and improve maintainability for the SPA Vite plugin package.
|
|
31
|
+
|
|
3
32
|
## 1.0.0-next.3
|
|
4
33
|
|
|
5
34
|
### Patch Changes
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
|
|
2
|
+
|
|
3
|
+
function getDefaultExportFromCjs (x) {
|
|
4
|
+
return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
export { commonjsGlobal as c, getDefaultExportFromCjs as g };
|
|
8
|
+
//# sourceMappingURL=_commonjsHelpers-BFTU3MAI.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"_commonjsHelpers-BFTU3MAI.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;"}
|