@astrale-os/adapter-cloudflare 0.4.9 → 0.4.10
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@astrale-os/adapter-cloudflare",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.10",
|
|
4
4
|
"description": "Deploy an Astrale domain as a standalone Cloudflare Worker",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"adapter",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"jose": "^6.1.3",
|
|
36
|
-
"@astrale-os/sdk": "^0.4.
|
|
36
|
+
"@astrale-os/sdk": "^0.4.19"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@astrale-os/ox": ">=0.1.0 <1.0.0",
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# Deps
|
|
2
|
+
node_modules/
|
|
3
|
+
|
|
4
|
+
# Generated plumbing (worker entry, wrangler config, identity, spec)
|
|
5
|
+
.astrale/
|
|
6
|
+
.domain-studio/.cache/
|
|
7
|
+
|
|
8
|
+
# Worker dev + build artifacts
|
|
9
|
+
.dev.vars
|
|
10
|
+
.wrangler/
|
|
11
|
+
.dist/
|
|
12
|
+
|
|
13
|
+
# Secrets — every .env.<env> is gitignored; .env.example is the only one tracked
|
|
14
|
+
.env
|
|
15
|
+
.env.*
|
|
16
|
+
!.env.example
|
package/template/package.json
CHANGED
|
@@ -5,12 +5,8 @@ packages:
|
|
|
5
5
|
|
|
6
6
|
# pnpm blocks dependency build scripts by default; these need their postinstall
|
|
7
7
|
# to run (workerd is wrangler's runtime — without it `pnpm dev`/`pnpm prod`
|
|
8
|
-
# fail).
|
|
9
|
-
#
|
|
10
|
-
onlyBuiltDependencies:
|
|
11
|
-
- esbuild
|
|
12
|
-
- sharp
|
|
13
|
-
- workerd
|
|
8
|
+
# fail). Internal guarded preinstalls are explicitly denied because they are
|
|
9
|
+
# no-ops outside the umbrella workspace.
|
|
14
10
|
allowBuilds:
|
|
15
11
|
esbuild: true
|
|
16
12
|
sharp: true
|
|
@@ -25,20 +21,11 @@ allowBuilds:
|
|
|
25
21
|
'@astrale-os/sdk': false
|
|
26
22
|
'@astrale-os/shell': false
|
|
27
23
|
'@astrale-os/shell-react': false
|
|
24
|
+
# Optional native msgpack acceleration; the JS fallback is the portable
|
|
25
|
+
# scaffold baseline and does not require executing a transitive build script.
|
|
26
|
+
msgpackr-extract: false
|
|
28
27
|
|
|
29
|
-
#
|
|
30
|
-
#
|
|
31
|
-
|
|
32
|
-
ignoredBuiltDependencies:
|
|
33
|
-
- '@astrale-os/kernel-api'
|
|
34
|
-
- '@astrale-os/kernel-client'
|
|
35
|
-
- '@astrale-os/kernel-core'
|
|
36
|
-
- '@astrale-os/kernel-dsl'
|
|
37
|
-
- '@astrale-os/kernel-server'
|
|
38
|
-
- '@astrale-os/sdk'
|
|
39
|
-
- '@astrale-os/shell'
|
|
40
|
-
- '@astrale-os/shell-react'
|
|
41
|
-
|
|
42
|
-
# pnpm v11 gates `pnpm run` on a deps-status check that misfires on the
|
|
43
|
-
# ignored preinstalls above.
|
|
28
|
+
# Keep pnpm 11's one-day default non-strict and never install implicitly before
|
|
29
|
+
# `pnpm run` or `pnpm exec`.
|
|
30
|
+
minimumReleaseAgeStrict: false
|
|
44
31
|
verifyDepsBeforeRun: false
|