@kahitsan/plugin-sdk 0.3.0-staging.43 → 0.3.0
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/bin/cli.mjs +4 -6
- package/dist/index.js +1 -1
- package/package.json +2 -3
- package/shell/_build/.vite/manifest.json +0 -189
- package/shell/_build/.vite/manifest.json.br +0 -0
- package/shell/_build/.vite/manifest.json.gz +0 -0
- package/shell/_build/assets/_...slug_-BNycC89F.js +0 -1
- package/shell/_build/assets/_...slug_-BNycC89F.js.br +0 -0
- package/shell/_build/assets/_...slug_-BNycC89F.js.gz +0 -0
- package/shell/_build/assets/api-keys-zDu0DTIi.js +0 -1
- package/shell/_build/assets/auth-CPW4mGTx.js +0 -70
- package/shell/_build/assets/auth-CPW4mGTx.js.br +0 -0
- package/shell/_build/assets/auth-CPW4mGTx.js.gz +0 -0
- package/shell/_build/assets/client-B0tH7z8C.css +0 -1
- package/shell/_build/assets/client-B0tH7z8C.css.br +0 -0
- package/shell/_build/assets/client-B0tH7z8C.css.gz +0 -0
- package/shell/_build/assets/client-BhDpDGXU.js +0 -2
- package/shell/_build/assets/client-BhDpDGXU.js.br +0 -0
- package/shell/_build/assets/client-BhDpDGXU.js.gz +0 -0
- package/shell/_build/assets/components-kMeatXhB.js +0 -1
- package/shell/_build/assets/dashboard-BwMkrsX2.js +0 -1
- package/shell/_build/assets/index-dCQOOcel.js +0 -1
- package/shell/_build/assets/login-BwMkrsX2.js +0 -1
- package/shell/_build/assets/members-CKVe_2mI.js +0 -1
- package/shell/_build/assets/plugin-ui-rgxz3UHD.js +0 -10
- package/shell/_build/assets/plugin-ui-rgxz3UHD.js.br +0 -0
- package/shell/_build/assets/plugin-ui-rgxz3UHD.js.gz +0 -0
- package/shell/_build/assets/register-BwMkrsX2.js +0 -1
- package/shell/_build/assets/routing-BlHUL5zP.js +0 -1
- package/shell/_build/assets/routing-BlHUL5zP.js.br +0 -0
- package/shell/_build/assets/routing-BlHUL5zP.js.gz +0 -0
- package/shell/_build/assets/settings-BwMkrsX2.js +0 -1
- package/shell/_build/assets/users-BwMkrsX2.js +0 -1
- package/shell/_build/assets/workspace-nav-DsOJmRdY.js +0 -1
- package/shell/_build/assets/workspace-nav-DsOJmRdY.js.br +0 -0
- package/shell/_build/assets/workspace-nav-DsOJmRdY.js.gz +0 -0
- package/shell/_build/assets/workspace-settings-BwMkrsX2.js +0 -1
- package/shell/_build/assets/workspaces-BwMkrsX2.js +0 -1
- package/shell/_headers +0 -20
- package/shell/_redirects +0 -4
- package/shell/_server/assets/app-B0tH7z8C.css +0 -1
- package/shell/_server/assets/app-B0tH7z8C.css.br +0 -0
- package/shell/_server/assets/app-B0tH7z8C.css.gz +0 -0
- package/shell/apple-touch-icon.png +0 -0
- package/shell/dev/apple-touch-icon.png +0 -0
- package/shell/dev/favicon-32.png +0 -0
- package/shell/dev/favicon.ico +0 -0
- package/shell/dev/manifest.webmanifest +0 -31
- package/shell/dev/pwa-192.png +0 -0
- package/shell/dev/pwa-512-maskable.png +0 -0
- package/shell/dev/pwa-512.png +0 -0
- package/shell/favicon-32.png +0 -0
- package/shell/favicon.ico +0 -0
- package/shell/index.html +0 -1
- package/shell/index.html.br +0 -0
- package/shell/index.html.gz +0 -0
- package/shell/manifest.webmanifest +0 -31
- package/shell/pwa-192.png +0 -0
- package/shell/pwa-512-maskable.png +0 -0
- package/shell/pwa-512.png +0 -0
- package/shell/sw.js +0 -103
- package/shell/sw.js.br +0 -0
- package/shell/sw.js.gz +0 -0
- package/src/dev/serve.ts +0 -141
package/bin/cli.mjs
CHANGED
|
@@ -35,12 +35,10 @@ if (dirs.length === 0 || wantsHelp) {
|
|
|
35
35
|
process.exit(wantsHelp ? 0 : 2);
|
|
36
36
|
}
|
|
37
37
|
|
|
38
|
-
//
|
|
39
|
-
//
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
const launcher = join(here, "..", "src", "dev", "serve.ts");
|
|
43
|
-
const child = spawn("bun", [launcher, ...dirs], { stdio: "inherit" });
|
|
38
|
+
// The harness ships as Bun source next to the package root (src/dev/), reachable from
|
|
39
|
+
// the published package without any kernel checkout. dev-host.ts takes N plugin dirs.
|
|
40
|
+
const devHost = join(here, "..", "src", "dev", "dev-host.ts");
|
|
41
|
+
const child = spawn("bun", [devHost, ...dirs], { stdio: "inherit" });
|
|
44
42
|
child.on("error", (err) => {
|
|
45
43
|
if (err && err.code === "ENOENT") {
|
|
46
44
|
console.error(
|