@absolutejs/absolute 0.20.0-beta.88 → 0.20.0-beta.89
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/CHANGELOG.md +13 -0
- package/changelog.json +16 -0
- package/dist/angular/components/core/streamingSlotRegistrar.js +1 -1
- package/dist/angular/components/core/streamingSlotRegistry.js +2 -2
- package/dist/build.js +40 -7
- package/dist/build.js.map +3 -3
- package/dist/index.js +40 -7
- package/dist/index.js.map +3 -3
- package/dist/mobile/index.js +40 -7
- package/dist/mobile/index.js.map +3 -3
- package/package.json +9 -4
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"@absolutejs/auth": ">=0.75.0 <0.77.0",
|
|
11
11
|
"@absolutejs/beacon": ">=0.7.0-beta.4 <0.8.0",
|
|
12
|
-
"@absolutejs/deploy": "0.25.
|
|
12
|
+
"@absolutejs/deploy": "0.25.14",
|
|
13
13
|
"@absolutejs/devices": "0.7.0",
|
|
14
14
|
"@absolutejs/devices-capacitor": "0.8.0",
|
|
15
15
|
"@absolutejs/devices-expo": "0.0.2",
|
|
@@ -33,6 +33,7 @@
|
|
|
33
33
|
"description": "A fullstack meta-framework for building web applications with TypeScript",
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@absolutejs/blob": "0.5.2",
|
|
36
|
+
"@absolutejs/changelog": "^0.6.0",
|
|
36
37
|
"@absolutejs/dispatch": "0.9.0",
|
|
37
38
|
"@absolutejs/manifest": "0.9.0",
|
|
38
39
|
"@absolutejs/scoped-state": "0.2.2",
|
|
@@ -295,10 +296,12 @@
|
|
|
295
296
|
}
|
|
296
297
|
},
|
|
297
298
|
"files": [
|
|
298
|
-
"
|
|
299
|
+
"CHANGELOG.md",
|
|
299
300
|
"LICENSE",
|
|
300
301
|
"README.md",
|
|
301
|
-
"THIRD_PARTY_NOTICES.md"
|
|
302
|
+
"THIRD_PARTY_NOTICES.md",
|
|
303
|
+
"changelog.json",
|
|
304
|
+
"dist"
|
|
302
305
|
],
|
|
303
306
|
"homepage": "https://github.com/absolutejs/absolutejs",
|
|
304
307
|
"license": "BSL-1.1",
|
|
@@ -443,6 +446,7 @@
|
|
|
443
446
|
"scripts": {
|
|
444
447
|
"bd": "bun run scripts/build.ts && bun",
|
|
445
448
|
"build": "bun run scripts/build.ts",
|
|
449
|
+
"check:package": "absolute-changelog check",
|
|
446
450
|
"config": "bun run src/cli/index.ts config",
|
|
447
451
|
"config:studio": "bun run src/cli/index.ts config --config example/absolute.config.ts",
|
|
448
452
|
"db:push": "drizzle-kit push",
|
|
@@ -452,6 +456,7 @@
|
|
|
452
456
|
"format:check": "bun run src/cli/index.ts prettier --check",
|
|
453
457
|
"lint": "bun run src/cli/index.ts eslint",
|
|
454
458
|
"ls": "bun run src/cli/index.ts ls",
|
|
459
|
+
"prepublishOnly": "bun run check:package",
|
|
455
460
|
"release": "bun run release:gate && bun publish",
|
|
456
461
|
"release:beta": "bun run release:gate && bun publish --tag beta",
|
|
457
462
|
"release:gate": "bun run scripts/releaseGate.ts",
|
|
@@ -523,7 +528,7 @@
|
|
|
523
528
|
]
|
|
524
529
|
}
|
|
525
530
|
},
|
|
526
|
-
"version": "0.20.0-beta.
|
|
531
|
+
"version": "0.20.0-beta.89",
|
|
527
532
|
"workspaces": [
|
|
528
533
|
"tests/fixtures/*",
|
|
529
534
|
"tests/fixtures/_packages/*"
|