everything-dev 1.35.2 → 1.35.4
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/dist/cli/infra.cjs +45 -8
- package/dist/cli/infra.cjs.map +1 -1
- package/dist/cli/infra.mjs +45 -8
- package/dist/cli/infra.mjs.map +1 -1
- package/dist/cli/init.cjs +2 -1
- package/dist/cli/init.cjs.map +1 -1
- package/dist/cli/init.mjs +2 -1
- package/dist/cli/init.mjs.map +1 -1
- package/dist/contract.d.cts +18 -18
- package/dist/contract.d.mts +18 -18
- package/dist/plugin.cjs +9 -11
- package/dist/plugin.cjs.map +1 -1
- package/dist/plugin.d.cts +10 -10
- package/dist/plugin.d.cts.map +1 -1
- package/dist/plugin.d.mts +10 -10
- package/dist/plugin.d.mts.map +1 -1
- package/dist/plugin.mjs +9 -11
- package/dist/plugin.mjs.map +1 -1
- package/dist/types.d.cts +2 -2
- package/dist/types.d.mts +2 -2
- package/package.json +1 -1
- package/skills/dev-workflow/SKILL.md +3 -3
- package/skills/publish-sync/SKILL.md +1 -1
- package/skills/super-app/SKILL.md +2 -2
package/dist/types.d.cts
CHANGED
|
@@ -473,8 +473,8 @@ declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
473
473
|
account: z.ZodString;
|
|
474
474
|
domain: z.ZodOptional<z.ZodString>;
|
|
475
475
|
networkId: z.ZodEnum<{
|
|
476
|
-
testnet: "testnet";
|
|
477
476
|
mainnet: "mainnet";
|
|
477
|
+
testnet: "testnet";
|
|
478
478
|
}>;
|
|
479
479
|
title: z.ZodOptional<z.ZodString>;
|
|
480
480
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -619,8 +619,8 @@ declare const ClientRuntimeConfigSchema: z.ZodObject<{
|
|
|
619
619
|
}>;
|
|
620
620
|
account: z.ZodString;
|
|
621
621
|
networkId: z.ZodEnum<{
|
|
622
|
-
testnet: "testnet";
|
|
623
622
|
mainnet: "mainnet";
|
|
623
|
+
testnet: "testnet";
|
|
624
624
|
}>;
|
|
625
625
|
hostUrl: z.ZodOptional<z.ZodString>;
|
|
626
626
|
assetsUrl: z.ZodString;
|
package/dist/types.d.mts
CHANGED
|
@@ -473,8 +473,8 @@ declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
473
473
|
account: z.ZodString;
|
|
474
474
|
domain: z.ZodOptional<z.ZodString>;
|
|
475
475
|
networkId: z.ZodEnum<{
|
|
476
|
-
testnet: "testnet";
|
|
477
476
|
mainnet: "mainnet";
|
|
477
|
+
testnet: "testnet";
|
|
478
478
|
}>;
|
|
479
479
|
title: z.ZodOptional<z.ZodString>;
|
|
480
480
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -619,8 +619,8 @@ declare const ClientRuntimeConfigSchema: z.ZodObject<{
|
|
|
619
619
|
}>;
|
|
620
620
|
account: z.ZodString;
|
|
621
621
|
networkId: z.ZodEnum<{
|
|
622
|
-
testnet: "testnet";
|
|
623
622
|
mainnet: "mainnet";
|
|
623
|
+
testnet: "testnet";
|
|
624
624
|
}>;
|
|
625
625
|
hostUrl: z.ZodOptional<z.ZodString>;
|
|
626
626
|
assetsUrl: z.ZodString;
|
package/package.json
CHANGED
|
@@ -10,8 +10,8 @@ metadata:
|
|
|
10
10
|
## Starting Development
|
|
11
11
|
|
|
12
12
|
```bash
|
|
13
|
-
# Typical:
|
|
14
|
-
bos dev
|
|
13
|
+
# Typical: start development (host mode auto-detected)
|
|
14
|
+
bos dev
|
|
15
15
|
|
|
16
16
|
# Isolate work
|
|
17
17
|
bos dev --api remote # UI only
|
|
@@ -49,7 +49,7 @@ The orchestrator:
|
|
|
49
49
|
|
|
50
50
|
- **UI changes**: Rsbuild HMR — instant at :3003, no rebuild
|
|
51
51
|
- **API changes**: Rspack HMR — instant at :3001, no rebuild
|
|
52
|
-
- **Config changes**: Require host restart (`bos kill && bos dev
|
|
52
|
+
- **Config changes**: Require host restart (`bos kill && bos dev`)
|
|
53
53
|
|
|
54
54
|
## Contract Sync & Type Generation
|
|
55
55
|
|
|
@@ -134,14 +134,14 @@ The tenant config must:
|
|
|
134
134
|
For the base runtime:
|
|
135
135
|
|
|
136
136
|
```bash
|
|
137
|
-
bos dev
|
|
137
|
+
bos dev
|
|
138
138
|
bos publish --deploy
|
|
139
139
|
```
|
|
140
140
|
|
|
141
141
|
For a shared-host child UI app:
|
|
142
142
|
|
|
143
143
|
```bash
|
|
144
|
-
bos dev --
|
|
144
|
+
bos dev --api remote
|
|
145
145
|
bos publish --deploy
|
|
146
146
|
```
|
|
147
147
|
|