@eclipse-docks/create-app 0.7.80 → 0.7.82
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/package.json
CHANGED
package/template/README.md
CHANGED
|
@@ -23,4 +23,4 @@ Then open the URL shown in the terminal (e.g. https://localhost:5173/).
|
|
|
23
23
|
|
|
24
24
|
## PWA
|
|
25
25
|
|
|
26
|
-
The app is set up with **vite-plugin-pwa** (injectManifest), a **service worker** at `packages/app/src/sw.ts`, and **`@eclipse-docks/extension-pwa`** for install / update controls in the
|
|
26
|
+
The app is set up with **vite-plugin-pwa** (injectManifest), a **service worker** at `packages/app/src/sw.ts`, and **`@eclipse-docks/extension-pwa`** for install / update controls in the main center toolbar. Production `npm run build` emits the web app manifest and precached assets. To opt out, remove the PWA extension from `packages/app/src/main.ts` and `extensions.ts`, delete `src/sw.ts`, and strip the `VitePWA(...)` block from `packages/app/vite.config.ts`.
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
"@eclipse-docks/extension-media-viewer": "^0.x",
|
|
19
19
|
"@eclipse-docks/extension-memory-usage": "^0.x",
|
|
20
20
|
"@eclipse-docks/extension-monaco-editor": "^0.x",
|
|
21
|
+
"@eclipse-docks/extension-plain-editor": "^0.x",
|
|
21
22
|
"@eclipse-docks/extension-pwa": "^0.x",
|
|
22
23
|
"@eclipse-docks/extension-notebook": "^0.x",
|
|
23
24
|
"@eclipse-docks/extension-python-runtime": "^0.x",
|
|
@@ -14,6 +14,7 @@ import '@eclipse-docks/extension-md-editor';
|
|
|
14
14
|
import '@eclipse-docks/extension-media-viewer';
|
|
15
15
|
import '@eclipse-docks/extension-memory-usage';
|
|
16
16
|
import '@eclipse-docks/extension-monaco-editor';
|
|
17
|
+
import '@eclipse-docks/extension-plain-editor';
|
|
17
18
|
import '@eclipse-docks/extension-settings-tree';
|
|
18
19
|
import '@eclipse-docks/extension-utils';
|
|
19
20
|
import 'example-extension';
|
|
@@ -17,7 +17,7 @@ appLoaderService.registerApp(
|
|
|
17
17
|
'@eclipse-docks/extension-command-palette',
|
|
18
18
|
'@eclipse-docks/extension-catalog',
|
|
19
19
|
'@eclipse-docks/extension-md-editor',
|
|
20
|
-
'@eclipse-docks/extension-
|
|
20
|
+
'@eclipse-docks/extension-plain-editor',
|
|
21
21
|
'@eclipse-docks/extension-media-viewer',
|
|
22
22
|
'@eclipse-docks/extension-settings-tree',
|
|
23
23
|
'@eclipse-docks/extension-memory-usage',
|