@absolutejs/absolute 0.20.0-beta.37 → 0.20.0-beta.39
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/README.md +20 -0
- package/dist/angular/components/core/streamingSlotRegistrar.js +1 -1
- package/dist/angular/components/core/streamingSlotRegistry.js +2 -2
- package/dist/cli/index.js +1193 -282
- package/dist/mobile/index.js +594 -49
- package/dist/mobile/index.js.map +8 -7
- package/dist/mobile/remoteMacAgentEntry.js +6 -6
- package/dist/src/mobile/androidRelease.d.ts +6 -0
- package/dist/src/mobile/ciWorkflow.d.ts +26 -0
- package/dist/src/mobile/index.d.ts +1 -0
- package/dist/src/mobile/iosRelease.d.ts +1 -0
- package/dist/src/mobile/mobileBundleInspection.d.ts +55 -0
- package/dist/src/mobile/mobileInspect.d.ts +42 -16
- package/dist/src/mobile/releaseDoctor.d.ts +23 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -261,6 +261,26 @@ validation, and release projection. Add `--json` for a redacted CI or support
|
|
|
261
261
|
artifact; it omits credentials, device/account identifiers, absolute paths, and
|
|
262
262
|
detailed doctor messages. See [mobile project inspection](docs/MOBILE_INSPECT.md).
|
|
263
263
|
|
|
264
|
+
Before signing, run `absolute mobile doctor release`. It validates pinned and
|
|
265
|
+
aligned Capacitor packages, dependency locking, HTTPS and signed-link identity,
|
|
266
|
+
packaged app identity, SHA-256 page/style integrity, runtime compatibility, CSP,
|
|
267
|
+
native deep-link projections, privacy/permission projections, debug residue,
|
|
268
|
+
and Sync/device policy. Its `--json` output is a redacted format-versioned CI
|
|
269
|
+
artifact containing public app facts, check IDs/statuses, totals, and explicit
|
|
270
|
+
manual-review categories—never local paths or detailed failure text. See the
|
|
271
|
+
[Capacitor mobile threat model](docs/MOBILE_SECURITY_THREAT_MODEL.md).
|
|
272
|
+
|
|
273
|
+
Generate protected GitHub Actions for cryptographic pull-request validation,
|
|
274
|
+
signed AAB/IPA builds, and optional Google Play/TestFlight publication:
|
|
275
|
+
|
|
276
|
+
```sh
|
|
277
|
+
bunx absolute mobile ci github server.ts --publish
|
|
278
|
+
```
|
|
279
|
+
|
|
280
|
+
The generated workflow keeps signing and provider credentials behind the
|
|
281
|
+
`absolute-mobile-release` GitHub environment. See
|
|
282
|
+
[mobile CI and store releases](docs/MOBILE_CI.md).
|
|
283
|
+
|
|
264
284
|
`keyboard` provides portable visibility, CSS-pixel height, dismissal, and
|
|
265
285
|
cleanup-safe change events. `systemBars` controls modern edge-to-edge status and
|
|
266
286
|
navigation bar foreground appearance/visibility through Capacitor 8 core. Its
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
var __require = import.meta.require;
|
|
3
3
|
|
|
4
|
-
// .angular-partial-tmp-
|
|
4
|
+
// .angular-partial-tmp-vyQdxN/src/core/streamingSlotRegistrar.ts
|
|
5
5
|
var STREAMING_SLOT_REGISTRAR_KEY = Symbol.for("absolutejs.streamingSlotRegistrar");
|
|
6
6
|
var STREAMING_SLOT_WARNING_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotWarningController");
|
|
7
7
|
var STREAMING_SLOT_COLLECTION_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotCollectionController");
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
var __require = import.meta.require;
|
|
3
3
|
|
|
4
|
-
// .angular-partial-tmp-
|
|
4
|
+
// .angular-partial-tmp-vyQdxN/src/core/streamingSlotRegistrar.ts
|
|
5
5
|
var STREAMING_SLOT_REGISTRAR_KEY = Symbol.for("absolutejs.streamingSlotRegistrar");
|
|
6
6
|
var STREAMING_SLOT_WARNING_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotWarningController");
|
|
7
7
|
var STREAMING_SLOT_COLLECTION_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotCollectionController");
|
|
@@ -48,7 +48,7 @@ var warnMissingStreamingSlotCollector = (primitiveName) => {
|
|
|
48
48
|
getWarningController()?.maybeWarn(primitiveName);
|
|
49
49
|
};
|
|
50
50
|
|
|
51
|
-
// .angular-partial-tmp-
|
|
51
|
+
// .angular-partial-tmp-vyQdxN/src/core/streamingSlotRegistry.ts
|
|
52
52
|
var STREAMING_SLOT_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotAsyncLocalStorage");
|
|
53
53
|
var isObjectRecord2 = (value) => Boolean(value) && typeof value === "object";
|
|
54
54
|
var isAsyncLocalStorage = (value) => isObjectRecord2(value) && ("getStore" in value) && typeof value.getStore === "function" && ("run" in value) && typeof value.run === "function";
|