@jseeio/jsee 0.8.0 → 0.8.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/CHANGELOG.md +6 -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 +7 -7
- package/src/browser-bundle-node.js +9 -0
- package/src/cli.js +11 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.8.1
|
|
4
|
+
### Fixes:
|
|
5
|
+
- Fix `jsee init` JavaScript templates so generated minimal and chat apps accept the default object payload in both browser and server-side execution modes.
|
|
6
|
+
- Build UMD bundles with `globalThis`, and route CommonJS `require()` for browser-bundle subpaths through a clear Node stub instead of failing with browser-global errors.
|
|
7
|
+
- Harden the exported CLI generator for `node -e` / programmatic contexts where `require.main` is not defined.
|
|
8
|
+
|
|
3
9
|
## 0.8.0
|
|
4
10
|
### Features:
|
|
5
11
|
- Full bundle: new build target `jsee.full.js` that includes Observable Plot, Three.js, and Leaflet for rich output types out of the box. The CLI and Python server auto-select `jsee.full.js` vs `jsee.core.js` based on schema output types. Build with `npm run build-full`
|
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.1`.
|
|
38
38
|
|
|
39
39
|
**npm CLI/dev server:**
|
|
40
40
|
|