@jseeio/jsee 0.8.7 → 0.8.8
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 +4 -0
- package/README.md +1 -1
- package/dist/jsee.core.js +1 -1
- package/dist/jsee.full.js +1 -1
- package/dist/jsee.runtime.js +1 -1
- package/package.json +1 -1
- package/src/cli.js +60 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.8.8 - 2026-05-25
|
|
4
|
+
|
|
5
|
+
- Applied app package `browser` field aliases during CLI dependency bundling so installed JSEE app packages can bundle legacy browser dependencies reliably.
|
|
6
|
+
|
|
3
7
|
## 0.8.7
|
|
4
8
|
### Features:
|
|
5
9
|
- Add `jsee --run` for one-shot CLI execution of local JavaScript JSEE apps. Default output is pipeable stdout; `--outputs <dir>` writes all outputs into a directory; named output flags such as `--file out.csv` write individual outputs.
|
package/README.md
CHANGED
|
@@ -34,7 +34,7 @@ Smallest browser example:
|
|
|
34
34
|
<script src="https://cdn.jsdelivr.net/npm/@jseeio/jsee@latest/dist/jsee.core.js"></script>
|
|
35
35
|
```
|
|
36
36
|
|
|
37
|
-
Pin a version for production, for example `@jseeio/jsee@0.8.
|
|
37
|
+
Pin a version for production, for example `@jseeio/jsee@0.8.8`.
|
|
38
38
|
|
|
39
39
|
**npm CLI/dev server:**
|
|
40
40
|
|