@fougere/app 0.10.0-alpha.0 → 0.12.0-alpha.0
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/boot.d.ts.map +1 -1
- package/dist/boot.js +13 -7
- package/dist/boot.js.map +1 -1
- package/package.json +12 -12
- package/src/boot.ts +13 -7
package/dist/boot.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"boot.d.ts","sourceRoot":"","sources":["../src/boot.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"boot.d.ts","sourceRoot":"","sources":["../src/boot.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,GAAG,EAAE,gBAAgB,EAAE,aAAa,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AACrF,OAAO,EAAW,KAAK,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAIlE,MAAM,WAAW,mBAAmB;IAClC;;;;OAIG;IACH,OAAO,CAAC,EAAE,eAAe,CAAC;IAC1B,8FAA8F;IAC9F,UAAU,CAAC,EAAE,gBAAgB,CAAC,YAAY,CAAC,CAAC;IAC5C,mEAAmE;IACnE,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,gEAAgE;IAChE,IAAI,CAAC,EAAE,gBAAgB,CAAC,MAAM,CAAC,CAAC;IAChC,6EAA6E;IAC7E,MAAM,CAAC,EAAE,gBAAgB,CAAC,QAAQ,CAAC,CAAC;IACpC,oEAAoE;IACpE,MAAM,CAAC,EAAE,OAAO,CAAC,aAAa,CAAC,CAAC;IAChC,8DAA8D;IAC9D,eAAe,CAAC,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,SAAS,CAAC;CAC9C;AASD;;;GAGG;AACH,wBAAgB,gBAAgB,CAAC,MAAM,EAAE,mBAAmB,QAG3D;AAED,8DAA8D;AAC9D,wBAAgB,aAAa,CAAC,MAAM,EAAE,OAAO,CAAC,mBAAmB,CAAC,QAGjE;AAED,2EAA2E;AAC3E,wBAAgB,aAAa,IAAI,OAAO,CAAC,GAAG,CAAC,CAK5C;AAED,qBAAqB;AACrB,wBAAsB,aAAa,CAAC,SAAS,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,GAAG,CAAC,CAWpE"}
|
package/dist/boot.js
CHANGED
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
import { applyConfig, createApp, identityFromEnv, Logger } from '@fougere/core';
|
|
3
3
|
import { scanProject, frondAliases } from '@fougere/compiler';
|
|
4
4
|
import { resolveConventions } from '@fougere/core';
|
|
5
|
-
import { loadCascadedConfig, setModuleLoader } from '@fougere/core/node';
|
|
6
|
-
import { createContainer } from '@fougere/container';
|
|
5
|
+
import { loadCascadedConfig, remotesOf, setModuleLoader, statedModules } from '@fougere/core/node';
|
|
7
6
|
import { createMemoryStorage } from '@fougere/adapter-memory';
|
|
8
7
|
import { layerOf } from '@fougere/defaults';
|
|
9
8
|
// ── State ────────────────────────────────────────
|
|
@@ -104,8 +103,11 @@ async function boot() {
|
|
|
104
103
|
// the default would import the transport and read the environment for a key, both
|
|
105
104
|
// pointless once the caller has said who carries the call.
|
|
106
105
|
let remoteTransport = _config.remoteTransport;
|
|
107
|
-
|
|
108
|
-
|
|
106
|
+
// What the config names by module — imported here, because core resolves no specifier.
|
|
107
|
+
const stated = await statedModules(fileConfig.fronds);
|
|
108
|
+
const remotes = remotesOf(fileConfig);
|
|
109
|
+
if (!remoteTransport && Object.keys(remotes).length > 0) {
|
|
110
|
+
log.debug(`remotes declared (${Object.keys(remotes).join(', ')}) — wiring HTTP transport`);
|
|
109
111
|
const { createHttpTransport } = await import('@fougere/transport-http');
|
|
110
112
|
// A call that leaves this process carries a proof of who sent it, when the
|
|
111
113
|
// deployment gave one. Without a key it travels as a bare claim, which only a
|
|
@@ -126,15 +128,19 @@ async function boot() {
|
|
|
126
128
|
...(!_config.fronds && !_config.scan
|
|
127
129
|
? { scan: await scanProject(root, undefined, conventions) }
|
|
128
130
|
: {}),
|
|
129
|
-
|
|
131
|
+
...(stated.fronds.length > 0
|
|
132
|
+
? { fronds: [...(_config.fronds ?? []), ...stated.fronds] }
|
|
133
|
+
: {}),
|
|
130
134
|
// The layer, spread whole. Naming a few of its members is how `transacted` and `close`
|
|
131
135
|
// were left behind once, under Nuxt only.
|
|
132
136
|
...layerOf(storage, createMemoryStorage),
|
|
133
137
|
auth: fileConfig.auth,
|
|
134
138
|
adapters: fileConfig.adapters,
|
|
135
|
-
remotes
|
|
139
|
+
remotes,
|
|
140
|
+
/** Who inherits code from whom — the tree, whole, so a refusal can name where an entry sits. */
|
|
141
|
+
under: fileConfig.fronds,
|
|
136
142
|
remoteTransport,
|
|
137
|
-
extensions: _config.extensions ?? [],
|
|
143
|
+
extensions: [...stated.extensions, ...(_config.extensions ?? [])],
|
|
138
144
|
// Opened before the container, so released after it. Never wired here until now:
|
|
139
145
|
// this host boots the storage and no host closed one, which is what made a reload
|
|
140
146
|
// leak the pool of every app it discarded.
|
package/dist/boot.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"boot.js","sourceRoot":"","sources":["../src/boot.ts"],"names":[],"mappings":"AAAA,+FAA+F;AAC/F,OAAO,EAAE,WAAW,EAAE,SAAS,EAAE,eAAe,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AAChF,OAAO,EAAE,WAAW,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAC9D,OAAO,EAAE,kBAAkB,EAAE,MAAM,eAAe,CAAC;AACnD,OAAO,EAAE,kBAAkB,EAAE,
|
|
1
|
+
{"version":3,"file":"boot.js","sourceRoot":"","sources":["../src/boot.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fougere/app",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.12.0-alpha.0",
|
|
4
4
|
"description": "The host-independent half of a Fougere app: boot, call envelope, REST table, form contract.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"fougere",
|
|
@@ -42,25 +42,25 @@
|
|
|
42
42
|
],
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"jiti": "^2.6.1",
|
|
45
|
-
"@fougere/
|
|
46
|
-
"@fougere/
|
|
47
|
-
"@fougere/
|
|
48
|
-
"@fougere/
|
|
49
|
-
"@fougere/
|
|
50
|
-
"@fougere/transport-http": "0.
|
|
51
|
-
"@fougere/
|
|
52
|
-
"@fougere/adapter-memory": "0.
|
|
53
|
-
"@fougere/
|
|
45
|
+
"@fougere/schema": "0.12.0-alpha.0",
|
|
46
|
+
"@fougere/core": "0.12.0-alpha.0",
|
|
47
|
+
"@fougere/defaults": "0.12.0-alpha.0",
|
|
48
|
+
"@fougere/container": "0.12.0-alpha.0",
|
|
49
|
+
"@fougere/compiler": "0.12.0-alpha.0",
|
|
50
|
+
"@fougere/transport-http": "0.12.0-alpha.0",
|
|
51
|
+
"@fougere/http": "0.12.0-alpha.0",
|
|
52
|
+
"@fougere/adapter-memory": "0.12.0-alpha.0",
|
|
53
|
+
"@fougere/adapter-rest": "0.12.0-alpha.0"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"vitest": "^4.1.0",
|
|
57
|
-
"@fougere/adapter-graphql": "0.
|
|
57
|
+
"@fougere/adapter-graphql": "0.12.0-alpha.0"
|
|
58
58
|
},
|
|
59
59
|
"publishConfig": {
|
|
60
60
|
"access": "public"
|
|
61
61
|
},
|
|
62
62
|
"peerDependencies": {
|
|
63
|
-
"@fougere/adapter-graphql": "0.
|
|
63
|
+
"@fougere/adapter-graphql": "^0.12.0-alpha.0"
|
|
64
64
|
},
|
|
65
65
|
"peerDependenciesMeta": {
|
|
66
66
|
"@fougere/adapter-graphql": {
|
package/src/boot.ts
CHANGED
|
@@ -2,9 +2,8 @@
|
|
|
2
2
|
import { applyConfig, createApp, identityFromEnv, Logger } from '@fougere/core';
|
|
3
3
|
import { scanProject, frondAliases } from '@fougere/compiler';
|
|
4
4
|
import { resolveConventions } from '@fougere/core';
|
|
5
|
-
import { loadCascadedConfig, setModuleLoader } from '@fougere/core/node';
|
|
5
|
+
import { loadCascadedConfig, remotesOf, setModuleLoader, statedModules } from '@fougere/core/node';
|
|
6
6
|
|
|
7
|
-
import { createContainer } from '@fougere/container';
|
|
8
7
|
import { createMemoryStorage } from '@fougere/adapter-memory';
|
|
9
8
|
import type { App, CreateAppOptions, FougereConfig, Transport } from '@fougere/core';
|
|
10
9
|
import { layerOf, type ResolvedStorage } from '@fougere/defaults';
|
|
@@ -142,8 +141,11 @@ async function boot(): Promise<App> {
|
|
|
142
141
|
// the default would import the transport and read the environment for a key, both
|
|
143
142
|
// pointless once the caller has said who carries the call.
|
|
144
143
|
let remoteTransport: ((url: string) => Transport) | undefined = _config.remoteTransport;
|
|
145
|
-
|
|
146
|
-
|
|
144
|
+
// What the config names by module — imported here, because core resolves no specifier.
|
|
145
|
+
const stated = await statedModules(fileConfig.fronds);
|
|
146
|
+
const remotes = remotesOf(fileConfig);
|
|
147
|
+
if (!remoteTransport && Object.keys(remotes).length > 0) {
|
|
148
|
+
log.debug(`remotes declared (${Object.keys(remotes).join(', ')}) — wiring HTTP transport`);
|
|
147
149
|
const { createHttpTransport } = await import('@fougere/transport-http');
|
|
148
150
|
// A call that leaves this process carries a proof of who sent it, when the
|
|
149
151
|
// deployment gave one. Without a key it travels as a bare claim, which only a
|
|
@@ -165,15 +167,19 @@ async function boot(): Promise<App> {
|
|
|
165
167
|
...(!_config.fronds && !_config.scan
|
|
166
168
|
? { scan: await scanProject(root, undefined, conventions) }
|
|
167
169
|
: {}),
|
|
168
|
-
|
|
170
|
+
...(stated.fronds.length > 0
|
|
171
|
+
? { fronds: [...(_config.fronds ?? []), ...stated.fronds] }
|
|
172
|
+
: {}),
|
|
169
173
|
// The layer, spread whole. Naming a few of its members is how `transacted` and `close`
|
|
170
174
|
// were left behind once, under Nuxt only.
|
|
171
175
|
...layerOf(storage, createMemoryStorage),
|
|
172
176
|
auth: fileConfig.auth,
|
|
173
177
|
adapters: fileConfig.adapters,
|
|
174
|
-
remotes
|
|
178
|
+
remotes,
|
|
179
|
+
/** Who inherits code from whom — the tree, whole, so a refusal can name where an entry sits. */
|
|
180
|
+
under: fileConfig.fronds,
|
|
175
181
|
remoteTransport,
|
|
176
|
-
extensions: _config.extensions ?? [],
|
|
182
|
+
extensions: [...stated.extensions, ...(_config.extensions ?? [])],
|
|
177
183
|
// Opened before the container, so released after it. Never wired here until now:
|
|
178
184
|
// this host boots the storage and no host closed one, which is what made a reload
|
|
179
185
|
// leak the pool of every app it discarded.
|