@hienlh/ppm 0.5.19 → 0.5.21
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 +12 -0
- package/dist/web/monacoeditorwork/css.worker.bundle.js +54268 -0
- package/dist/web/monacoeditorwork/editor.worker.bundle.js +14316 -0
- package/dist/web/monacoeditorwork/html.worker.bundle.js +30452 -0
- package/dist/web/monacoeditorwork/json.worker.bundle.js +22095 -0
- package/dist/web/monacoeditorwork/ts.worker.bundle.js +225957 -0
- package/dist/web/sw.js +1 -1
- package/package.json +1 -1
- package/vite.config.ts +69 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.5.21] - 2026-03-18
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
- **Share: local network URL** — share popover now shows a "Local Network" link (device IP + port) for same-network access, always visible without starting a tunnel
|
|
7
|
+
- **Share: separate Cloudflare section** — public tunnel URL shown under "Public (Cloudflare)" label with QR code, only after user clicks "Start Sharing"
|
|
8
|
+
|
|
9
|
+
## [0.5.20] - 2026-03-18
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
- **Build: relative outDir for Monaco plugin** — use relative `outDir` path (`../../dist/web`) instead of `resolve(__dirname, ...)` to fix Monaco editor worker plugin on Windows builds
|
|
13
|
+
- **PWA: increase cache size limit** — set `maximumFileSizeToCacheInBytes` to 15MB so large Monaco/worker bundles are cached by the service worker
|
|
14
|
+
|
|
3
15
|
## [0.5.19] - 2026-03-18
|
|
4
16
|
|
|
5
17
|
### Fixed
|