@absolutejs/absolute 0.20.0-beta.4 → 0.20.0-beta.5
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/angular/components/core/streamingSlotRegistrar.js +1 -1
- package/dist/angular/components/core/streamingSlotRegistry.js +2 -2
- package/dist/angular/index.js +341 -22
- package/dist/angular/index.js.map +8 -5
- package/dist/angular/server.js +341 -22
- package/dist/angular/server.js.map +8 -5
- package/dist/build.js +94 -22
- package/dist/build.js.map +9 -9
- package/dist/cli/index.js +986 -557
- package/dist/dev/client/cssUtils.ts +16 -2
- package/dist/dev/client/handlers/rebuild.ts +11 -1
- package/dist/dev/client/hmrTiming.ts +14 -7
- package/dist/index.js +364 -191
- package/dist/index.js.map +17 -17
- package/dist/mobile/browser.js +14 -1
- package/dist/mobile/browser.js.map +3 -3
- package/dist/mobile/index.js +588 -99
- package/dist/mobile/index.js.map +15 -13
- package/dist/mobile/remoteMacAgentEntry.js +8 -8
- package/dist/src/angular/pageHandler.d.ts +3 -0
- package/dist/src/cli/config/server.d.ts +1 -1
- package/dist/src/core/pageHandlers.d.ts +11 -2
- package/dist/src/mobile/androidEmulatorController.d.ts +6 -1
- package/dist/src/mobile/buildPipeline.d.ts +1 -0
- package/dist/src/mobile/capacitorBundle.d.ts +11 -1
- package/dist/src/mobile/client.d.ts +4 -0
- package/dist/src/mobile/index.d.ts +1 -0
- package/dist/src/mobile/nativeAuth.d.ts +17 -0
- package/dist/src/mobile/releaseArtifact.d.ts +2 -0
- package/dist/src/mobile/shellAuth.d.ts +8 -0
- package/dist/src/mobile/shellBootstrap.d.ts +11 -1
- package/dist/src/mobile/shellSync.d.ts +2 -0
- package/dist/src/mobile/staticDocument.d.ts +5 -0
- package/dist/src/mobile/transport.d.ts +9 -1
- package/dist/src/plugins/imageOptimizer.d.ts +1 -1
- package/dist/src/svelte/pageHandler.d.ts +3 -0
- package/dist/src/vue/pageHandler.d.ts +3 -0
- package/dist/svelte/index.js +312 -23
- package/dist/svelte/index.js.map +7 -4
- package/dist/svelte/server.js +307 -18
- package/dist/svelte/server.js.map +7 -4
- package/dist/vue/index.js +312 -23
- package/dist/vue/index.js.map +7 -4
- package/dist/vue/server.js +307 -18
- package/dist/vue/server.js.map +7 -4
- package/package.json +20 -8
package/package.json
CHANGED
|
@@ -7,6 +7,12 @@
|
|
|
7
7
|
"url": "https://github.com/absolutejs/absolutejs/issues"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
+
"@absolutejs/auth": "0.69.3",
|
|
11
|
+
"@absolutejs/devices": "0.0.2",
|
|
12
|
+
"@absolutejs/devices-capacitor": "0.1.0",
|
|
13
|
+
"@capacitor/browser": "8.0.4",
|
|
14
|
+
"@capacitor/network": "8.0.1",
|
|
15
|
+
"@capacitor/preferences": "8.0.1",
|
|
10
16
|
"@elysia/openapi": "2.0.0-beta.1",
|
|
11
17
|
"@elysia/server-timing": "2.0.0-beta.1",
|
|
12
18
|
"@elysia/static": "2.0.0-beta.2",
|
|
@@ -19,6 +25,7 @@
|
|
|
19
25
|
"devDependencies": {
|
|
20
26
|
"@absolutejs/manifest": "0.9.0",
|
|
21
27
|
"@absolutejs/scoped-state": "0.2.0",
|
|
28
|
+
"@absolutejs/sync": "2.15.1",
|
|
22
29
|
"@angular/animations": "21.2.6",
|
|
23
30
|
"@angular/cdk": "21.2.6",
|
|
24
31
|
"@angular/common": "21.2.6",
|
|
@@ -265,12 +272,12 @@
|
|
|
265
272
|
"main": "./dist/index.js",
|
|
266
273
|
"name": "@absolutejs/absolute",
|
|
267
274
|
"optionalDependencies": {
|
|
268
|
-
"@absolutejs/native-darwin-arm64": "0.20.0-beta.
|
|
269
|
-
"@absolutejs/native-darwin-x64": "0.20.0-beta.
|
|
270
|
-
"@absolutejs/native-linux-arm64": "0.20.0-beta.
|
|
271
|
-
"@absolutejs/native-linux-x64": "0.20.0-beta.
|
|
272
|
-
"@absolutejs/native-windows-arm64": "0.20.0-beta.
|
|
273
|
-
"@absolutejs/native-windows-x64": "0.20.0-beta.
|
|
275
|
+
"@absolutejs/native-darwin-arm64": "0.20.0-beta.5",
|
|
276
|
+
"@absolutejs/native-darwin-x64": "0.20.0-beta.5",
|
|
277
|
+
"@absolutejs/native-linux-arm64": "0.20.0-beta.5",
|
|
278
|
+
"@absolutejs/native-linux-x64": "0.20.0-beta.5",
|
|
279
|
+
"@absolutejs/native-windows-arm64": "0.20.0-beta.5",
|
|
280
|
+
"@absolutejs/native-windows-x64": "0.20.0-beta.5"
|
|
274
281
|
},
|
|
275
282
|
"overrides": {
|
|
276
283
|
"@sinclair/typebox": "0.34.52",
|
|
@@ -280,6 +287,7 @@
|
|
|
280
287
|
"typebox": "1.3.16"
|
|
281
288
|
},
|
|
282
289
|
"peerDependencies": {
|
|
290
|
+
"@absolutejs/sync": ">=2.15.1 <3",
|
|
283
291
|
"@angular/animations": "^21.0.0",
|
|
284
292
|
"@angular/common": "^21.0.0",
|
|
285
293
|
"@angular/compiler": "^21.0.0",
|
|
@@ -312,6 +320,9 @@
|
|
|
312
320
|
"vue-router": "^4.5.1"
|
|
313
321
|
},
|
|
314
322
|
"peerDependenciesMeta": {
|
|
323
|
+
"@absolutejs/sync": {
|
|
324
|
+
"optional": true
|
|
325
|
+
},
|
|
315
326
|
"@angular/animations": {
|
|
316
327
|
"optional": true
|
|
317
328
|
},
|
|
@@ -424,7 +435,8 @@
|
|
|
424
435
|
"test": "bun run test:unit && bun run test:integration",
|
|
425
436
|
"test:hmr": "bun run scripts/shardedTests.ts tests/integration/hmr",
|
|
426
437
|
"test:integration": "bun run scripts/shardedTests.ts tests/integration",
|
|
427
|
-
"test:native:android": "bun run test:native:android:lifecycle && bun run test:native:android:hmr",
|
|
438
|
+
"test:native:android": "bun run test:native:android:lifecycle && bun run test:native:android:hmr && bun run test:native:android:bundle",
|
|
439
|
+
"test:native:android:bundle": "ABSOLUTE_TEST_NATIVE_ANDROID=1 bun test tests/native/android-embedded-bundle-conformance.test.ts",
|
|
428
440
|
"test:native:android:hmr": "ABSOLUTE_TEST_NATIVE_ANDROID=1 bun test tests/native/android-hmr-conformance.test.ts",
|
|
429
441
|
"test:native:android:lifecycle": "ABSOLUTE_TEST_NATIVE_ANDROID=1 bun test tests/native/android-lifecycle-conformance.test.ts",
|
|
430
442
|
"test:native:ios": "ABSOLUTE_TEST_NATIVE_IOS=1 bun test tests/native/ios-lifecycle-conformance.test.ts",
|
|
@@ -476,7 +488,7 @@
|
|
|
476
488
|
]
|
|
477
489
|
}
|
|
478
490
|
},
|
|
479
|
-
"version": "0.20.0-beta.
|
|
491
|
+
"version": "0.20.0-beta.5",
|
|
480
492
|
"workspaces": [
|
|
481
493
|
"tests/fixtures/*",
|
|
482
494
|
"tests/fixtures/_packages/*"
|