@pulse-compute/cli 1.0.0-beta.1 → 1.0.0-beta.3
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/API.md +37 -4
- package/CHANGELOG.md +30 -0
- package/README.md +4 -3
- package/cli-spec.json +1 -1
- package/docs/README.md +1 -1
- package/docs/architecture/current-contracts.md +108 -7
- package/docs/concepts/compilation-and-lowering.md +1 -1
- package/docs/concepts/contracts-and-providers.md +2 -2
- package/docs/concepts/effects-and-continuations.md +57 -0
- package/docs/concepts/package-owned-lowering.md +1 -1
- package/docs/concepts/targets-and-hosts.md +10 -2
- package/docs/contributing/adding-core-provider.md +1 -1
- package/docs/contributing/adding-first-party-lowerer.md +1 -1
- package/docs/contributing/package-lowerer-contract.md +2 -2
- package/docs/guides/migrating-from-express.md +3 -3
- package/docs/guides/routing.md +19 -1
- package/docs/maintainers/documentation-deployment.md +4 -4
- package/docs/maintainers/documentation-versioning.md +1 -1
- package/docs/maintainers/maintainer-charter.md +17 -1
- package/docs/maintainers/maintenance-policy.json +34 -3
- package/docs/maintainers/maintenance-policy.md +3 -3
- package/docs/maintainers/npm-publishing.md +34 -6
- package/docs/maintainers/plugin-readiness.json +1 -1
- package/docs/maintainers/plugin-readiness.md +1 -1
- package/docs/maintainers/release-acceptance.md +51 -8
- package/docs/maintainers/release-manifest.md +23 -22
- package/docs/maintainers/scope-policy.md +13 -1
- package/docs/maintainers/testing.md +47 -1
- package/docs/packages/README.md +25 -24
- package/docs/packages/assets.md +1 -1
- package/docs/packages/crypto.md +8 -1
- package/docs/packages/entities.md +1 -1
- package/docs/packages/grip.md +1 -1
- package/docs/packages/implementation-packages.md +10 -1
- package/docs/packages/jwt.md +1 -1
- package/docs/packages/provider-fastly.md +29 -3
- package/docs/packages/pulse.md +1 -1
- package/docs/packages/runtime.md +10 -1
- package/docs/packages/s3.md +101 -0
- package/docs/preview-scope.md +2 -2
- package/docs/reference/cli-spec.json +1 -1
- package/docs/reference/cli.md +1 -1
- package/docs/reference/compatibility-matrix.md +2 -2
- package/docs/reference/diagnostics.md +5 -5
- package/docs/reference/documentation-versions.json +19 -3
- package/docs/reference/handler-authoring.md +1 -1
- package/docs/reference/project-config.md +33 -5
- package/docs/reference/project-config.schema.json +70 -7
- package/docs/reference/release-manifest.json +37 -23
- package/documentation-site.json +8 -1
- package/documentation-versions.json +19 -3
- package/examples/01-hello-json/README.md +1 -1
- package/examples/01-hello-json/package.json +2 -2
- package/examples/02-request-schema/README.md +1 -1
- package/examples/02-request-schema/package.json +2 -2
- package/examples/03-fetch-composition/README.md +1 -1
- package/examples/03-fetch-composition/package.json +2 -2
- package/examples/05-fastly-capabilities/README.md +2 -2
- package/examples/05-fastly-capabilities/package.json +4 -4
- package/examples/07-opaque-proxy/README.md +2 -2
- package/examples/07-opaque-proxy/package.json +3 -3
- package/examples/09-router-lowering/README.md +1 -1
- package/examples/09-router-lowering/package.json +3 -3
- package/examples/10-entities-tools/package.json +3 -3
- package/examples/11-events/README.md +1 -1
- package/examples/11-events/package.json +2 -2
- package/examples/12-mcp-proxy/README.md +1 -1
- package/examples/12-mcp-proxy/package.json +2 -2
- package/examples/13-jwt-es256/README.md +1 -1
- package/examples/13-jwt-es256/package.json +3 -3
- package/package.json +7 -7
- package/project-config.schema.json +70 -7
- package/release-manifest.json +37 -23
- package/src/documentation.js +1 -1
- package/src/project-config-schema.js +3 -3
- package/src/project-execution.js +64 -30
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": "pulse.release-catalog.v1",
|
|
3
|
-
"releaseVersion": "1.0.0-beta.
|
|
3
|
+
"releaseVersion": "1.0.0-beta.3",
|
|
4
4
|
"channel": "beta",
|
|
5
|
-
"releasedAt": "2026-
|
|
5
|
+
"releasedAt": "2026-09-14",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"display": {
|
|
8
8
|
"productName": "Pulse",
|
|
9
9
|
"candidateLabel": "Beta",
|
|
10
|
-
"candidateName": "Pulse 1.0.0-beta.
|
|
10
|
+
"candidateName": "Pulse 1.0.0-beta.3 — Beta",
|
|
11
11
|
"activationStage": "documentation-release"
|
|
12
12
|
},
|
|
13
13
|
"legal": {
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"documentation": {
|
|
30
30
|
"origin": "https://pulsecompute.io",
|
|
31
31
|
"basePath": "/",
|
|
32
|
-
"version": "v1.0.0-beta.
|
|
32
|
+
"version": "v1.0.0-beta.3",
|
|
33
33
|
"latestAlias": "latest",
|
|
34
34
|
"source": "docs/README.md"
|
|
35
35
|
},
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
},
|
|
98
98
|
"publication": {
|
|
99
99
|
"registry": "https://registry.npmjs.org",
|
|
100
|
-
"distTag": "
|
|
100
|
+
"distTag": "latest",
|
|
101
101
|
"access": "public",
|
|
102
102
|
"authentication": "npm-trusted-publishing-oidc",
|
|
103
103
|
"provenance": "automatic",
|
|
@@ -153,7 +153,7 @@
|
|
|
153
153
|
{
|
|
154
154
|
"dir": "packages/runtime",
|
|
155
155
|
"name": "@pulse-compute/runtime",
|
|
156
|
-
"version": "1.0.0-beta.
|
|
156
|
+
"version": "1.0.0-beta.3",
|
|
157
157
|
"documentation": "docs/packages/runtime.md",
|
|
158
158
|
"role": "public-runtime",
|
|
159
159
|
"tier": "canonical-application",
|
|
@@ -167,7 +167,7 @@
|
|
|
167
167
|
{
|
|
168
168
|
"dir": "packages/pulse",
|
|
169
169
|
"name": "@pulse-compute/pulse",
|
|
170
|
-
"version": "1.0.0-beta.
|
|
170
|
+
"version": "1.0.0-beta.3",
|
|
171
171
|
"documentation": "docs/packages/pulse.md",
|
|
172
172
|
"role": "public-api",
|
|
173
173
|
"tier": "canonical-application",
|
|
@@ -182,7 +182,7 @@
|
|
|
182
182
|
{
|
|
183
183
|
"dir": "wasm/packages/cli",
|
|
184
184
|
"name": "@pulse-compute/cli",
|
|
185
|
-
"version": "1.0.0-beta.
|
|
185
|
+
"version": "1.0.0-beta.3",
|
|
186
186
|
"documentation": "docs/packages/cli.md",
|
|
187
187
|
"role": "public-cli",
|
|
188
188
|
"tier": "canonical-application",
|
|
@@ -207,7 +207,7 @@
|
|
|
207
207
|
{
|
|
208
208
|
"dir": "packages/provider-fastly",
|
|
209
209
|
"name": "@pulse-compute/provider-fastly",
|
|
210
|
-
"version": "1.0.0-beta.
|
|
210
|
+
"version": "1.0.0-beta.3",
|
|
211
211
|
"documentation": "docs/packages/provider-fastly.md",
|
|
212
212
|
"role": "public-provider",
|
|
213
213
|
"tier": "supported-extension",
|
|
@@ -227,7 +227,7 @@
|
|
|
227
227
|
{
|
|
228
228
|
"dir": "packages/grip",
|
|
229
229
|
"name": "@pulse-compute/grip",
|
|
230
|
-
"version": "1.0.0-beta.
|
|
230
|
+
"version": "1.0.0-beta.3",
|
|
231
231
|
"documentation": "docs/packages/grip.md",
|
|
232
232
|
"role": "public-extension",
|
|
233
233
|
"tier": "supported-extension",
|
|
@@ -241,7 +241,7 @@
|
|
|
241
241
|
{
|
|
242
242
|
"dir": "packages/assets",
|
|
243
243
|
"name": "@pulse-compute/assets",
|
|
244
|
-
"version": "1.0.0-beta.
|
|
244
|
+
"version": "1.0.0-beta.3",
|
|
245
245
|
"documentation": "docs/packages/assets.md",
|
|
246
246
|
"role": "public-extension",
|
|
247
247
|
"tier": "supported-extension",
|
|
@@ -255,7 +255,7 @@
|
|
|
255
255
|
{
|
|
256
256
|
"dir": "packages/crypto",
|
|
257
257
|
"name": "@pulse-compute/crypto",
|
|
258
|
-
"version": "1.0.0-beta.
|
|
258
|
+
"version": "1.0.0-beta.3",
|
|
259
259
|
"documentation": "docs/packages/crypto.md",
|
|
260
260
|
"role": "public-extension",
|
|
261
261
|
"tier": "supported-extension",
|
|
@@ -269,7 +269,7 @@
|
|
|
269
269
|
{
|
|
270
270
|
"dir": "packages/jwt",
|
|
271
271
|
"name": "@pulse-compute/jwt",
|
|
272
|
-
"version": "1.0.0-beta.
|
|
272
|
+
"version": "1.0.0-beta.3",
|
|
273
273
|
"documentation": "docs/packages/jwt.md",
|
|
274
274
|
"role": "public-extension",
|
|
275
275
|
"tier": "supported-extension",
|
|
@@ -283,7 +283,7 @@
|
|
|
283
283
|
{
|
|
284
284
|
"dir": "packages/entities",
|
|
285
285
|
"name": "@pulse-compute/entities",
|
|
286
|
-
"version": "1.0.0-beta.
|
|
286
|
+
"version": "1.0.0-beta.3",
|
|
287
287
|
"documentation": "docs/packages/entities.md",
|
|
288
288
|
"role": "public-extension",
|
|
289
289
|
"tier": "supported-extension",
|
|
@@ -294,10 +294,24 @@
|
|
|
294
294
|
],
|
|
295
295
|
"stability": "The package root and first-party JSON-RPC adapter are supported Beta contracts; compiler integration subpaths remain toolchain-only."
|
|
296
296
|
},
|
|
297
|
+
{
|
|
298
|
+
"dir": "packages/s3",
|
|
299
|
+
"name": "@pulse-compute/s3",
|
|
300
|
+
"version": "1.0.0-beta.3",
|
|
301
|
+
"documentation": "docs/packages/s3.md",
|
|
302
|
+
"role": "public-extension",
|
|
303
|
+
"tier": "supported-extension",
|
|
304
|
+
"audience": "Applications using bounded exact-key object reads and writes through Pulse effects.",
|
|
305
|
+
"directInstall": "Yes, when an application uses S3 object operations.",
|
|
306
|
+
"entryPoints": [
|
|
307
|
+
"@pulse-compute/s3"
|
|
308
|
+
],
|
|
309
|
+
"stability": "The package root supports head, getText and putText on Node Native, Node JavaScript and Fastly Native. Fastly JavaScript is ineligible. Provider and lowering subpaths are toolchain-only; live origin acceptance is separate."
|
|
310
|
+
},
|
|
297
311
|
{
|
|
298
312
|
"dir": "wasm/packages/build-support",
|
|
299
313
|
"name": "@pulse-compute/wasm-build-support",
|
|
300
|
-
"version": "1.0.0-beta.
|
|
314
|
+
"version": "1.0.0-beta.3",
|
|
301
315
|
"documentation": "docs/packages/implementation-packages.md",
|
|
302
316
|
"role": "implementation",
|
|
303
317
|
"tier": "implementation",
|
|
@@ -311,7 +325,7 @@
|
|
|
311
325
|
{
|
|
312
326
|
"dir": "wasm/packages/compiler",
|
|
313
327
|
"name": "@pulse-compute/wasm-compiler",
|
|
314
|
-
"version": "1.0.0-beta.
|
|
328
|
+
"version": "1.0.0-beta.3",
|
|
315
329
|
"documentation": "docs/packages/implementation-packages.md",
|
|
316
330
|
"role": "implementation",
|
|
317
331
|
"tier": "implementation",
|
|
@@ -326,7 +340,7 @@
|
|
|
326
340
|
{
|
|
327
341
|
"dir": "wasm/packages/wasm-guest-link",
|
|
328
342
|
"name": "@pulse-compute/wasm-guest-link",
|
|
329
|
-
"version": "1.0.0-beta.
|
|
343
|
+
"version": "1.0.0-beta.3",
|
|
330
344
|
"documentation": "docs/packages/implementation-packages.md",
|
|
331
345
|
"role": "implementation",
|
|
332
346
|
"tier": "implementation",
|
|
@@ -340,7 +354,7 @@
|
|
|
340
354
|
{
|
|
341
355
|
"dir": "wasm/packages/contracts",
|
|
342
356
|
"name": "@pulse-compute/wasm-contracts",
|
|
343
|
-
"version": "1.0.0-beta.
|
|
357
|
+
"version": "1.0.0-beta.3",
|
|
344
358
|
"documentation": "docs/packages/implementation-packages.md",
|
|
345
359
|
"role": "implementation",
|
|
346
360
|
"tier": "implementation",
|
|
@@ -354,7 +368,7 @@
|
|
|
354
368
|
{
|
|
355
369
|
"dir": "wasm/packages/host-runtime",
|
|
356
370
|
"name": "@pulse-compute/wasm-host-runtime",
|
|
357
|
-
"version": "1.0.0-beta.
|
|
371
|
+
"version": "1.0.0-beta.3",
|
|
358
372
|
"documentation": "docs/packages/implementation-packages.md",
|
|
359
373
|
"role": "implementation",
|
|
360
374
|
"tier": "implementation",
|
|
@@ -368,7 +382,7 @@
|
|
|
368
382
|
{
|
|
369
383
|
"dir": "wasm/packages/library-kit",
|
|
370
384
|
"name": "@pulse-compute/wasm-library-kit",
|
|
371
|
-
"version": "1.0.0-beta.
|
|
385
|
+
"version": "1.0.0-beta.3",
|
|
372
386
|
"documentation": "docs/packages/implementation-packages.md",
|
|
373
387
|
"role": "implementation",
|
|
374
388
|
"tier": "implementation",
|
|
@@ -382,7 +396,7 @@
|
|
|
382
396
|
{
|
|
383
397
|
"dir": "packages/provider-node",
|
|
384
398
|
"name": "@pulse-compute/provider-node",
|
|
385
|
-
"version": "1.0.0-beta.
|
|
399
|
+
"version": "1.0.0-beta.3",
|
|
386
400
|
"documentation": "docs/packages/implementation-packages.md",
|
|
387
401
|
"role": "implementation",
|
|
388
402
|
"tier": "implementation",
|
|
@@ -397,7 +411,7 @@
|
|
|
397
411
|
{
|
|
398
412
|
"dir": "wasm/packages/runtime-core-as",
|
|
399
413
|
"name": "@pulse-compute/wasm-runtime-core-as",
|
|
400
|
-
"version": "1.0.0-beta.
|
|
414
|
+
"version": "1.0.0-beta.3",
|
|
401
415
|
"documentation": "docs/packages/implementation-packages.md",
|
|
402
416
|
"role": "implementation",
|
|
403
417
|
"tier": "implementation",
|
|
@@ -411,7 +425,7 @@
|
|
|
411
425
|
{
|
|
412
426
|
"dir": "wasm/packages/schema-json",
|
|
413
427
|
"name": "@pulse-compute/wasm-schema-json",
|
|
414
|
-
"version": "1.0.0-beta.
|
|
428
|
+
"version": "1.0.0-beta.3",
|
|
415
429
|
"documentation": "docs/packages/implementation-packages.md",
|
|
416
430
|
"role": "implementation",
|
|
417
431
|
"tier": "implementation",
|
package/documentation-site.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": "pulse.public-site.v1",
|
|
3
|
-
"releaseVersion": "1.0.0-beta.
|
|
3
|
+
"releaseVersion": "1.0.0-beta.3",
|
|
4
4
|
"product": {
|
|
5
5
|
"name": "Pulse",
|
|
6
6
|
"eyebrow": "TypeScript in / inspectable Wasm out",
|
|
@@ -140,6 +140,10 @@
|
|
|
140
140
|
"preview-scope": {
|
|
141
141
|
"source": "docs/preview-scope.md",
|
|
142
142
|
"label": "Beta scope"
|
|
143
|
+
},
|
|
144
|
+
"s3-package": {
|
|
145
|
+
"source": "docs/packages/s3.md",
|
|
146
|
+
"label": "S3"
|
|
143
147
|
}
|
|
144
148
|
},
|
|
145
149
|
"sourceAliases": {
|
|
@@ -460,6 +464,9 @@
|
|
|
460
464
|
"CHANGELOG.md": {
|
|
461
465
|
"title": "Changelog",
|
|
462
466
|
"order": 5
|
|
467
|
+
},
|
|
468
|
+
"docs/packages/s3.md": {
|
|
469
|
+
"order": 68
|
|
463
470
|
}
|
|
464
471
|
}
|
|
465
472
|
},
|
|
@@ -1,14 +1,30 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": "pulse.documentation-versions.v1",
|
|
3
|
-
"latest": "1.0.0-beta.
|
|
3
|
+
"latest": "1.0.0-beta.3",
|
|
4
4
|
"versions": [
|
|
5
|
+
{
|
|
6
|
+
"version": "1.0.0-beta.3",
|
|
7
|
+
"segment": "v1.0.0-beta.3",
|
|
8
|
+
"channel": "beta",
|
|
9
|
+
"releasedAt": "2026-09-14",
|
|
10
|
+
"status": "current",
|
|
11
|
+
"sourceManifest": "release/pulse-release-manifest.json"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"version": "1.0.0-beta.2",
|
|
15
|
+
"segment": "v1.0.0-beta.2",
|
|
16
|
+
"channel": "beta",
|
|
17
|
+
"releasedAt": "2026-09-13",
|
|
18
|
+
"status": "archived",
|
|
19
|
+
"sourceManifest": "release/documentation-site-archives/v1.0.0-beta.2/release-manifest.json"
|
|
20
|
+
},
|
|
5
21
|
{
|
|
6
22
|
"version": "1.0.0-beta.1",
|
|
7
23
|
"segment": "v1.0.0-beta.1",
|
|
8
24
|
"channel": "beta",
|
|
9
25
|
"releasedAt": "2026-08-01",
|
|
10
|
-
"status": "
|
|
11
|
-
"sourceManifest": "release/
|
|
26
|
+
"status": "archived",
|
|
27
|
+
"sourceManifest": "release/documentation-site-archives/v1.0.0-beta.1/release-manifest.json"
|
|
12
28
|
}
|
|
13
29
|
]
|
|
14
30
|
}
|
|
@@ -46,7 +46,7 @@ pulse test --json
|
|
|
46
46
|
| `canonical-native.wasm` | 2.2 KiB (2,212 bytes) | 2.0 KiB (2,058 bytes) | 7.0% |
|
|
47
47
|
|
|
48
48
|
The executable documentation gate rebuilds and measures both variants on
|
|
49
|
-
`1.0.0-beta.
|
|
49
|
+
`1.0.0-beta.3`. These are uncompressed on-disk sizes, not transfer sizes or
|
|
50
50
|
platform limits.
|
|
51
51
|
|
|
52
52
|
## Handler
|
|
@@ -11,10 +11,10 @@
|
|
|
11
11
|
"build": "pulse build"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@pulse-compute/pulse": "1.0.0-beta.
|
|
14
|
+
"@pulse-compute/pulse": "1.0.0-beta.3"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
|
-
"@pulse-compute/cli": "1.0.0-beta.
|
|
17
|
+
"@pulse-compute/cli": "1.0.0-beta.3",
|
|
18
18
|
"typescript": "5.9.3"
|
|
19
19
|
}
|
|
20
20
|
}
|
|
@@ -47,7 +47,7 @@ pulse test --json
|
|
|
47
47
|
| `canonical-native.wasm` | 38.9 KiB (39,795 bytes) | 30.8 KiB (31,578 bytes) | 20.6% |
|
|
48
48
|
|
|
49
49
|
The executable documentation gate rebuilds and measures both variants on
|
|
50
|
-
`1.0.0-beta.
|
|
50
|
+
`1.0.0-beta.3`. These are uncompressed on-disk sizes, not transfer sizes or
|
|
51
51
|
platform limits.
|
|
52
52
|
|
|
53
53
|
## Handler
|
|
@@ -11,10 +11,10 @@
|
|
|
11
11
|
"build": "pulse build"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@pulse-compute/pulse": "1.0.0-beta.
|
|
14
|
+
"@pulse-compute/pulse": "1.0.0-beta.3"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
|
-
"@pulse-compute/cli": "1.0.0-beta.
|
|
17
|
+
"@pulse-compute/cli": "1.0.0-beta.3",
|
|
18
18
|
"typescript": "5.9.3"
|
|
19
19
|
}
|
|
20
20
|
}
|
|
@@ -47,7 +47,7 @@ pulse test --json
|
|
|
47
47
|
| `canonical-native.wasm` | 5.0 KiB (5,117 bytes) | 4.2 KiB (4,349 bytes) | 15.0% |
|
|
48
48
|
|
|
49
49
|
The executable documentation gate rebuilds and measures both variants on
|
|
50
|
-
`1.0.0-beta.
|
|
50
|
+
`1.0.0-beta.3`. These are uncompressed on-disk sizes, not transfer sizes or
|
|
51
51
|
platform limits.
|
|
52
52
|
|
|
53
53
|
## Handler
|
|
@@ -11,10 +11,10 @@
|
|
|
11
11
|
"build": "pulse build"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@pulse-compute/pulse": "1.0.0-beta.
|
|
14
|
+
"@pulse-compute/pulse": "1.0.0-beta.3"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
|
-
"@pulse-compute/cli": "1.0.0-beta.
|
|
17
|
+
"@pulse-compute/cli": "1.0.0-beta.3",
|
|
18
18
|
"typescript": "5.9.3"
|
|
19
19
|
}
|
|
20
20
|
}
|
|
@@ -51,10 +51,10 @@ remains in the explicit reality profile.
|
|
|
51
51
|
| Artifact | Default build | `--experimental-native-size` | Reduction |
|
|
52
52
|
|---|---:|---:|---:|
|
|
53
53
|
| `canonical-native.wasm` | 5.3 KiB (5,454 bytes) | 4.8 KiB (4,888 bytes) | 10.4% |
|
|
54
|
-
| `bin/main.wasm` |
|
|
54
|
+
| `bin/main.wasm` | 41.8 KiB (42,806 bytes) | 34.6 KiB (35,420 bytes) | 17.3% |
|
|
55
55
|
|
|
56
56
|
The executable documentation gate rebuilds and measures both variants on
|
|
57
|
-
`1.0.0-beta.
|
|
57
|
+
`1.0.0-beta.3`. These are uncompressed on-disk sizes, not transfer sizes or
|
|
58
58
|
platform limits.
|
|
59
59
|
|
|
60
60
|
## Handler
|
|
@@ -11,12 +11,12 @@
|
|
|
11
11
|
"build": "pulse build"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@pulse-compute/grip": "1.0.0-beta.
|
|
15
|
-
"@pulse-compute/provider-fastly": "1.0.0-beta.
|
|
16
|
-
"@pulse-compute/pulse": "1.0.0-beta.
|
|
14
|
+
"@pulse-compute/grip": "1.0.0-beta.3",
|
|
15
|
+
"@pulse-compute/provider-fastly": "1.0.0-beta.3",
|
|
16
|
+
"@pulse-compute/pulse": "1.0.0-beta.3"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@pulse-compute/cli": "1.0.0-beta.
|
|
19
|
+
"@pulse-compute/cli": "1.0.0-beta.3",
|
|
20
20
|
"typescript": "5.9.3"
|
|
21
21
|
}
|
|
22
22
|
}
|
|
@@ -49,10 +49,10 @@ remains in the explicit reality profile.
|
|
|
49
49
|
| Artifact | Default build | `--experimental-native-size` | Reduction |
|
|
50
50
|
|---|---:|---:|---:|
|
|
51
51
|
| `canonical-native.wasm` | 2.1 KiB (2,200 bytes) | 2.1 KiB (2,101 bytes) | 4.5% |
|
|
52
|
-
| `bin/main.wasm` |
|
|
52
|
+
| `bin/main.wasm` | 29.7 KiB (30,455 bytes) | 25.7 KiB (26,287 bytes) | 13.7% |
|
|
53
53
|
|
|
54
54
|
The executable documentation gate rebuilds and measures both variants on
|
|
55
|
-
`1.0.0-beta.
|
|
55
|
+
`1.0.0-beta.3`. These are uncompressed on-disk sizes, not transfer sizes or
|
|
56
56
|
platform limits.
|
|
57
57
|
|
|
58
58
|
## Handler
|
|
@@ -11,11 +11,11 @@
|
|
|
11
11
|
"build": "pulse build"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@pulse-compute/pulse": "1.0.0-beta.
|
|
15
|
-
"@pulse-compute/provider-fastly": "1.0.0-beta.
|
|
14
|
+
"@pulse-compute/pulse": "1.0.0-beta.3",
|
|
15
|
+
"@pulse-compute/provider-fastly": "1.0.0-beta.3"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"@pulse-compute/cli": "1.0.0-beta.
|
|
18
|
+
"@pulse-compute/cli": "1.0.0-beta.3",
|
|
19
19
|
"typescript": "5.9.3"
|
|
20
20
|
}
|
|
21
21
|
}
|
|
@@ -83,7 +83,7 @@ pulse test --json
|
|
|
83
83
|
| `canonical-native.wasm` | 6.1 KiB (6,271 bytes) | 5.4 KiB (5,496 bytes) | 12.4% |
|
|
84
84
|
|
|
85
85
|
The executable documentation gate rebuilds and measures both variants on
|
|
86
|
-
`1.0.0-beta.
|
|
86
|
+
`1.0.0-beta.3`. These are uncompressed on-disk sizes, not transfer sizes or
|
|
87
87
|
platform limits.
|
|
88
88
|
|
|
89
89
|
## Router application
|
|
@@ -12,11 +12,11 @@
|
|
|
12
12
|
"build": "pulse build"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@pulse-compute/runtime": "1.0.0-beta.
|
|
16
|
-
"@pulse-compute/pulse": "1.0.0-beta.
|
|
15
|
+
"@pulse-compute/runtime": "1.0.0-beta.3",
|
|
16
|
+
"@pulse-compute/pulse": "1.0.0-beta.3"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@pulse-compute/cli": "1.0.0-beta.
|
|
19
|
+
"@pulse-compute/cli": "1.0.0-beta.3",
|
|
20
20
|
"typescript": "5.9.3"
|
|
21
21
|
}
|
|
22
22
|
}
|
|
@@ -11,11 +11,11 @@
|
|
|
11
11
|
"build": "pulse build"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@pulse-compute/entities": "1.0.0-beta.
|
|
15
|
-
"@pulse-compute/pulse": "1.0.0-beta.
|
|
14
|
+
"@pulse-compute/entities": "1.0.0-beta.3",
|
|
15
|
+
"@pulse-compute/pulse": "1.0.0-beta.3"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"@pulse-compute/cli": "1.0.0-beta.
|
|
18
|
+
"@pulse-compute/cli": "1.0.0-beta.3",
|
|
19
19
|
"typescript": "5.9.3"
|
|
20
20
|
}
|
|
21
21
|
}
|
|
@@ -59,7 +59,7 @@ pulse test --json
|
|
|
59
59
|
| `canonical-native.wasm` | 38.4 KiB (39,358 bytes) | 30.6 KiB (31,313 bytes) | 20.4% |
|
|
60
60
|
|
|
61
61
|
The executable documentation gate rebuilds and measures both variants on
|
|
62
|
-
`1.0.0-beta.
|
|
62
|
+
`1.0.0-beta.3`. These are uncompressed on-disk sizes, not transfer sizes or
|
|
63
63
|
platform limits.
|
|
64
64
|
|
|
65
65
|
## Application
|
|
@@ -11,10 +11,10 @@
|
|
|
11
11
|
"build": "pulse build"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@pulse-compute/pulse": "1.0.0-beta.
|
|
14
|
+
"@pulse-compute/pulse": "1.0.0-beta.3"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
|
-
"@pulse-compute/cli": "1.0.0-beta.
|
|
17
|
+
"@pulse-compute/cli": "1.0.0-beta.3",
|
|
18
18
|
"typescript": "5.9.3"
|
|
19
19
|
}
|
|
20
20
|
}
|
|
@@ -53,7 +53,7 @@ pulse test --json
|
|
|
53
53
|
| `canonical-native.wasm` | 2.5 KiB (2,589 bytes) | 2.4 KiB (2,418 bytes) | 6.6% |
|
|
54
54
|
|
|
55
55
|
The executable documentation gate rebuilds and measures both variants on
|
|
56
|
-
`1.0.0-beta.
|
|
56
|
+
`1.0.0-beta.3`. These are uncompressed on-disk sizes, not transfer sizes or
|
|
57
57
|
platform limits.
|
|
58
58
|
|
|
59
59
|
## Handler
|
|
@@ -11,10 +11,10 @@
|
|
|
11
11
|
"build": "pulse build"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@pulse-compute/pulse": "1.0.0-beta.
|
|
14
|
+
"@pulse-compute/pulse": "1.0.0-beta.3"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
|
-
"@pulse-compute/cli": "1.0.0-beta.
|
|
17
|
+
"@pulse-compute/cli": "1.0.0-beta.3",
|
|
18
18
|
"typescript": "5.9.3"
|
|
19
19
|
}
|
|
20
20
|
}
|
|
@@ -70,7 +70,7 @@ pulse test --json
|
|
|
70
70
|
| Final linked `canonical-native.wasm` | 23.1 KiB (23,647 bytes) | 22.9 KiB (23,461 bytes) | 0.8% |
|
|
71
71
|
|
|
72
72
|
The executable documentation gate rebuilds and measures both variants on
|
|
73
|
-
`1.0.0-beta.
|
|
73
|
+
`1.0.0-beta.3`. These are uncompressed on-disk sizes, not transfer sizes or
|
|
74
74
|
platform limits. The first two rows are the exact primary and guest inputs
|
|
75
75
|
recorded by `guest-link-report.json`; the last row is the validated output of
|
|
76
76
|
the deterministic static link. Linked output is not the arithmetic sum of its
|
|
@@ -11,11 +11,11 @@
|
|
|
11
11
|
"build": "pulse build"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@pulse-compute/jwt": "1.0.0-beta.
|
|
15
|
-
"@pulse-compute/pulse": "1.0.0-beta.
|
|
14
|
+
"@pulse-compute/jwt": "1.0.0-beta.3",
|
|
15
|
+
"@pulse-compute/pulse": "1.0.0-beta.3"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"@pulse-compute/cli": "1.0.0-beta.
|
|
18
|
+
"@pulse-compute/cli": "1.0.0-beta.3",
|
|
19
19
|
"typescript": "5.9.3"
|
|
20
20
|
}
|
|
21
21
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulse-compute/cli",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.3",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "Pulse project CLI, configuration loader, and end-to-end workflow driver.",
|
|
6
6
|
"type": "commonjs",
|
|
@@ -27,11 +27,11 @@
|
|
|
27
27
|
"./documentation-site.json": "./documentation-site.json"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@pulse-compute/wasm-build-support": "1.0.0-beta.
|
|
31
|
-
"@pulse-compute/wasm-compiler": "1.0.0-beta.
|
|
32
|
-
"@pulse-compute/wasm-contracts": "1.0.0-beta.
|
|
33
|
-
"@pulse-compute/wasm-host-runtime": "1.0.0-beta.
|
|
34
|
-
"@pulse-compute/wasm-schema-json": "1.0.0-beta.
|
|
30
|
+
"@pulse-compute/wasm-build-support": "1.0.0-beta.3",
|
|
31
|
+
"@pulse-compute/wasm-compiler": "1.0.0-beta.3",
|
|
32
|
+
"@pulse-compute/wasm-contracts": "1.0.0-beta.3",
|
|
33
|
+
"@pulse-compute/wasm-host-runtime": "1.0.0-beta.3",
|
|
34
|
+
"@pulse-compute/wasm-schema-json": "1.0.0-beta.3",
|
|
35
35
|
"typescript": "5.9.3"
|
|
36
36
|
},
|
|
37
37
|
"bin": {
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"url": "git+https://github.com/pulse-compute/pulse.git",
|
|
69
69
|
"directory": "wasm/packages/cli"
|
|
70
70
|
},
|
|
71
|
-
"homepage": "https://pulsecompute.io/v1.0.0-beta.
|
|
71
|
+
"homepage": "https://pulsecompute.io/v1.0.0-beta.3/packages/cli/",
|
|
72
72
|
"bugs": {
|
|
73
73
|
"url": "https://github.com/pulse-compute/pulse/issues"
|
|
74
74
|
}
|