pastoria 1.0.11 → 1.0.13
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/dist/build.d.ts +5 -5
- package/dist/build.d.ts.map +1 -1
- package/dist/build.js +213 -164
- package/dist/build.js.map +1 -1
- package/dist/devserver.d.ts.map +1 -1
- package/dist/devserver.js +4 -3
- package/dist/devserver.js.map +1 -1
- package/dist/generate.d.ts +33 -1
- package/dist/generate.d.ts.map +1 -1
- package/dist/generate.js +150 -48
- package/dist/generate.js.map +1 -1
- package/dist/index.js +5 -6
- package/dist/index.js.map +1 -1
- package/dist/logger.d.ts +4 -0
- package/dist/logger.d.ts.map +1 -0
- package/dist/logger.js +10 -0
- package/dist/logger.js.map +1 -0
- package/dist/vite_plugin.d.ts +5 -0
- package/dist/vite_plugin.d.ts.map +1 -0
- package/dist/vite_plugin.js +93 -0
- package/dist/vite_plugin.js.map +1 -0
- package/package.json +19 -9
- package/src/build.ts +277 -177
- package/src/devserver.ts +4 -3
- package/src/generate.ts +182 -64
- package/src/index.ts +8 -7
- package/src/logger.ts +12 -0
- package/src/vite_plugin.ts +109 -0
- package/templates/router.tsx +1 -14
- package/tsconfig.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# pastoria
|
|
2
2
|
|
|
3
|
+
## 1.0.13
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 0ef0bdc: Automatically infer variable names and types from queries on
|
|
8
|
+
resource-routes if none provided
|
|
9
|
+
|
|
10
|
+
## 1.0.12
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- 641b356: Add pastoria make command
|
|
15
|
+
|
|
3
16
|
## 1.0.11
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/dist/build.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
export declare function createBuild(steps: string[], opts: {
|
|
2
|
+
alwaysMake: boolean;
|
|
3
|
+
release: boolean;
|
|
4
|
+
watch?: boolean;
|
|
5
|
+
}): Promise<void>;
|
|
6
6
|
//# sourceMappingURL=build.d.ts.map
|
package/dist/build.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"build.d.ts","sourceRoot":"","sources":["../src/build.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"build.d.ts","sourceRoot":"","sources":["../src/build.ts"],"names":[],"mappings":"AA4MA,wBAAsB,WAAW,CAC/B,KAAK,EAAE,MAAM,EAAE,EACf,IAAI,EAAE;IACJ,UAAU,EAAE,OAAO,CAAC;IACpB,OAAO,EAAE,OAAO,CAAC;IACjB,KAAK,CAAC,EAAE,OAAO,CAAC;CACjB,iBA+FF"}
|
package/dist/build.js
CHANGED
|
@@ -1,179 +1,228 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import { access } from 'node:fs/promises';
|
|
4
|
-
import
|
|
5
|
-
import {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
1
|
+
import ParcelWatcher, { getEventsSince, writeSnapshot } from '@parcel/watcher';
|
|
2
|
+
import { spawn } from 'node:child_process';
|
|
3
|
+
import { access, readFile } from 'node:fs/promises';
|
|
4
|
+
import path from 'node:path';
|
|
5
|
+
import { IndentationText, Project } from 'ts-morph';
|
|
6
|
+
import { build } from 'vite';
|
|
7
|
+
import { generatePastoriaArtifacts, generatePastoriaExports, PASTORIA_TAG_REGEX, } from './generate.js';
|
|
8
|
+
import { logger, logInfo } from './logger.js';
|
|
9
|
+
import { CLIENT_BUILD, createBuildConfig, SERVER_BUILD } from './vite_plugin.js';
|
|
10
|
+
var PastoriaMakePhase;
|
|
11
|
+
(function (PastoriaMakePhase) {
|
|
12
|
+
PastoriaMakePhase[PastoriaMakePhase["PASTORIA_EXPORTS"] = 0] = "PASTORIA_EXPORTS";
|
|
13
|
+
PastoriaMakePhase[PastoriaMakePhase["PASTORIA_ARTIFACTS"] = 1] = "PASTORIA_ARTIFACTS";
|
|
14
|
+
PastoriaMakePhase[PastoriaMakePhase["RELAY"] = 2] = "RELAY";
|
|
15
|
+
PastoriaMakePhase[PastoriaMakePhase["GRATS"] = 3] = "GRATS";
|
|
16
|
+
})(PastoriaMakePhase || (PastoriaMakePhase = {}));
|
|
17
|
+
const ALL_MAKE_PHASES = new Set([
|
|
18
|
+
PastoriaMakePhase.PASTORIA_EXPORTS,
|
|
19
|
+
PastoriaMakePhase.PASTORIA_ARTIFACTS,
|
|
20
|
+
PastoriaMakePhase.RELAY,
|
|
21
|
+
PastoriaMakePhase.GRATS,
|
|
22
|
+
]);
|
|
23
|
+
const SNAPSHOT_PATH = '.pastoriainfo';
|
|
24
|
+
async function runCommand(command, args) {
|
|
25
|
+
return new Promise((resolve, reject) => {
|
|
26
|
+
const child = spawn(command, args, {
|
|
27
|
+
cwd: process.cwd(),
|
|
28
|
+
stdio: 'inherit', // Stream output to terminal
|
|
29
|
+
shell: true,
|
|
30
|
+
});
|
|
31
|
+
child.on('exit', (code) => {
|
|
32
|
+
if (code === 0) {
|
|
33
|
+
resolve();
|
|
34
|
+
}
|
|
35
|
+
else {
|
|
36
|
+
reject(new Error(`Command failed with exit code ${code}`));
|
|
37
|
+
}
|
|
38
|
+
});
|
|
39
|
+
child.on('error', reject);
|
|
40
|
+
});
|
|
19
41
|
}
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
42
|
+
async function runGratsCompiler() {
|
|
43
|
+
const gratsPath = path.join(process.cwd(), 'node_modules', '.bin', 'grats');
|
|
44
|
+
await runCommand(gratsPath, []);
|
|
23
45
|
}
|
|
24
|
-
function
|
|
25
|
-
const
|
|
26
|
-
|
|
27
|
-
: '';
|
|
28
|
-
const appValue = hasAppRoot ? 'App' : 'null';
|
|
29
|
-
const serverHandlerImport = hasServerHandler
|
|
30
|
-
? `import {router as serverHandler} from '#genfiles/router/server_handler';`
|
|
31
|
-
: '';
|
|
32
|
-
const serverHandlerUse = hasServerHandler
|
|
33
|
-
? ' router.use(serverHandler)'
|
|
34
|
-
: '';
|
|
35
|
-
return `// Generated by Pastoria.
|
|
36
|
-
import {JSResource} from '#genfiles/router/js_resource';
|
|
37
|
-
import {
|
|
38
|
-
listRoutes,
|
|
39
|
-
router__createAppFromEntryPoint,
|
|
40
|
-
router__loadEntryPoint,
|
|
41
|
-
} from '#genfiles/router/router';
|
|
42
|
-
import {getSchema} from '#genfiles/schema/schema';
|
|
43
|
-
import {Context} from '#genfiles/router/context';
|
|
44
|
-
${appImport}
|
|
45
|
-
${serverHandlerImport}
|
|
46
|
-
import express from 'express';
|
|
47
|
-
import {GraphQLSchema, specifiedDirectives} from 'graphql';
|
|
48
|
-
import {PastoriaConfig} from 'pastoria-config';
|
|
49
|
-
import {createRouterHandler} from 'pastoria-runtime/server';
|
|
50
|
-
import type {Manifest} from 'vite';
|
|
51
|
-
|
|
52
|
-
const schemaConfig = getSchema().toConfig();
|
|
53
|
-
const schema = new GraphQLSchema({
|
|
54
|
-
...schemaConfig,
|
|
55
|
-
directives: [...specifiedDirectives, ...schemaConfig.directives],
|
|
56
|
-
});
|
|
57
|
-
|
|
58
|
-
export function createHandler(
|
|
59
|
-
persistedQueries: Record<string, string>,
|
|
60
|
-
config: Required<PastoriaConfig>,
|
|
61
|
-
manifest?: Manifest,
|
|
62
|
-
) {
|
|
63
|
-
const routeHandler = createRouterHandler(
|
|
64
|
-
listRoutes(),
|
|
65
|
-
JSResource.srcOfModuleId,
|
|
66
|
-
router__loadEntryPoint,
|
|
67
|
-
router__createAppFromEntryPoint,
|
|
68
|
-
${appValue},
|
|
69
|
-
schema,
|
|
70
|
-
(req) => Context.createFromRequest(req),
|
|
71
|
-
persistedQueries,
|
|
72
|
-
config,
|
|
73
|
-
manifest,
|
|
74
|
-
);
|
|
75
|
-
|
|
76
|
-
const router = express.Router();
|
|
77
|
-
router.use(routeHandler);
|
|
78
|
-
${serverHandlerUse}
|
|
79
|
-
|
|
80
|
-
return router;
|
|
46
|
+
async function runRelayCompiler() {
|
|
47
|
+
const relayPath = path.join(process.cwd(), 'node_modules', '.bin', 'relay-compiler');
|
|
48
|
+
await runCommand(relayPath, []);
|
|
81
49
|
}
|
|
82
|
-
|
|
50
|
+
function fileMatchesPastoriaTags(filePath, content) {
|
|
51
|
+
// Skip generated files
|
|
52
|
+
if (filePath.includes('__generated__')) {
|
|
53
|
+
return false;
|
|
54
|
+
}
|
|
55
|
+
return PASTORIA_TAG_REGEX.test(content);
|
|
83
56
|
}
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
};
|
|
89
|
-
async function hasAppRoot() {
|
|
90
|
-
try {
|
|
91
|
-
await access('__generated__/router/app_root.ts');
|
|
92
|
-
capabilities.hasAppRoot = true;
|
|
93
|
-
}
|
|
94
|
-
catch { }
|
|
57
|
+
function fileMatchesGratsTags(filePath, content) {
|
|
58
|
+
// Skip generated files
|
|
59
|
+
if (filePath.includes('__generated__')) {
|
|
60
|
+
return false;
|
|
95
61
|
}
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
62
|
+
// Match any Grats JSDoc tag
|
|
63
|
+
return /@gql\w+/.test(content);
|
|
64
|
+
}
|
|
65
|
+
function fileMatchesRelayImports(filePath, content) {
|
|
66
|
+
// Skip generated files
|
|
67
|
+
if (filePath.includes('__generated__')) {
|
|
68
|
+
return false;
|
|
102
69
|
}
|
|
103
|
-
|
|
104
|
-
|
|
70
|
+
return (/import\s+.*\s+from\s+['"]react-relay['"]/.test(content) ||
|
|
71
|
+
/import\s+.*\s+from\s+['"]relay-runtime['"]/.test(content));
|
|
105
72
|
}
|
|
106
|
-
function
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
73
|
+
async function requiredMakePhasesForChanges(events) {
|
|
74
|
+
let makePhases = new Set();
|
|
75
|
+
await Promise.all(events.map(async (event) => {
|
|
76
|
+
const filePath = event.path;
|
|
77
|
+
// Skip non-TypeScript/TSX files
|
|
78
|
+
if (!filePath.match(/\.(ts|tsx)$/)) {
|
|
79
|
+
return;
|
|
80
|
+
}
|
|
81
|
+
// For delete events, we can't read content, so assume it might affect all pipelines
|
|
82
|
+
if (event.type === 'delete') {
|
|
83
|
+
makePhases = ALL_MAKE_PHASES;
|
|
84
|
+
return;
|
|
85
|
+
}
|
|
86
|
+
// Read file content for create/update events
|
|
87
|
+
try {
|
|
88
|
+
const content = await readFile(filePath, 'utf-8');
|
|
89
|
+
if (fileMatchesPastoriaTags(filePath, content)) {
|
|
90
|
+
makePhases.add(PastoriaMakePhase.PASTORIA_EXPORTS);
|
|
91
|
+
makePhases.add(PastoriaMakePhase.PASTORIA_ARTIFACTS);
|
|
117
92
|
}
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
if (id === clientEntryModuleId) {
|
|
122
|
-
return generateClientEntry(capabilities);
|
|
93
|
+
if (fileMatchesGratsTags(filePath, content)) {
|
|
94
|
+
makePhases.add(PastoriaMakePhase.GRATS);
|
|
95
|
+
makePhases.add(PastoriaMakePhase.RELAY); // Relay depends on Grats schema
|
|
123
96
|
}
|
|
124
|
-
|
|
125
|
-
|
|
97
|
+
if (fileMatchesRelayImports(filePath, content)) {
|
|
98
|
+
makePhases.add(PastoriaMakePhase.RELAY);
|
|
126
99
|
}
|
|
127
|
-
}
|
|
128
|
-
|
|
100
|
+
}
|
|
101
|
+
catch {
|
|
102
|
+
// If we can't read the file, assume it might affect all pipelines
|
|
103
|
+
makePhases = ALL_MAKE_PHASES;
|
|
104
|
+
}
|
|
105
|
+
}));
|
|
106
|
+
return makePhases;
|
|
129
107
|
}
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
};
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
},
|
|
152
|
-
plugins: [
|
|
153
|
-
pastoriaEntryPlugin(),
|
|
154
|
-
tailwindcss(),
|
|
155
|
-
react({
|
|
156
|
-
babel: {
|
|
157
|
-
plugins: [['babel-plugin-react-compiler', {}], 'relay'],
|
|
158
|
-
},
|
|
159
|
-
}),
|
|
160
|
-
cjsInterop({
|
|
161
|
-
dependencies: ['react-relay', 'react-relay/hooks', 'relay-runtime'],
|
|
162
|
-
}),
|
|
163
|
-
],
|
|
164
|
-
ssr: {
|
|
165
|
-
noExternal: ['pastoria-runtime'],
|
|
166
|
-
},
|
|
167
|
-
};
|
|
108
|
+
function requiredMakePhasesForArgs(steps) {
|
|
109
|
+
const validSteps = new Set(['schema', 'relay', 'router']);
|
|
110
|
+
const needs = new Set();
|
|
111
|
+
for (const step of steps) {
|
|
112
|
+
if (!validSteps.has(step)) {
|
|
113
|
+
throw new Error(`Invalid build step: ${step}. Valid steps are: schema, relay, router`);
|
|
114
|
+
}
|
|
115
|
+
switch (step) {
|
|
116
|
+
case 'schema':
|
|
117
|
+
needs.add(PastoriaMakePhase.GRATS);
|
|
118
|
+
break;
|
|
119
|
+
case 'relay':
|
|
120
|
+
needs.add(PastoriaMakePhase.RELAY);
|
|
121
|
+
break;
|
|
122
|
+
case 'router':
|
|
123
|
+
needs.add(PastoriaMakePhase.PASTORIA_EXPORTS);
|
|
124
|
+
needs.add(PastoriaMakePhase.PASTORIA_ARTIFACTS);
|
|
125
|
+
break;
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
return needs;
|
|
168
129
|
}
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
130
|
+
async function executeBuildSteps(project, needs) {
|
|
131
|
+
let rebuiltAnything = false;
|
|
132
|
+
let cachedMetadata = undefined;
|
|
133
|
+
if (needs.has(PastoriaMakePhase.PASTORIA_EXPORTS)) {
|
|
134
|
+
logInfo('Running Pastoria exports generation...');
|
|
135
|
+
cachedMetadata = await generatePastoriaExports(project);
|
|
136
|
+
rebuiltAnything = true;
|
|
137
|
+
}
|
|
138
|
+
if (needs.has(PastoriaMakePhase.GRATS)) {
|
|
139
|
+
logInfo('Running Grats compiler...');
|
|
140
|
+
await runGratsCompiler();
|
|
141
|
+
rebuiltAnything = true;
|
|
142
|
+
}
|
|
143
|
+
if (needs.has(PastoriaMakePhase.RELAY)) {
|
|
144
|
+
logInfo('Running Relay compiler...');
|
|
145
|
+
await runRelayCompiler();
|
|
146
|
+
rebuiltAnything = true;
|
|
147
|
+
}
|
|
148
|
+
if (needs.has(PastoriaMakePhase.PASTORIA_ARTIFACTS)) {
|
|
149
|
+
logInfo('Running Pastoria artifacts generation...');
|
|
150
|
+
await generatePastoriaArtifacts(project, cachedMetadata);
|
|
151
|
+
rebuiltAnything = true;
|
|
152
|
+
}
|
|
153
|
+
return rebuiltAnything;
|
|
154
|
+
}
|
|
155
|
+
export async function createBuild(steps, opts) {
|
|
156
|
+
if (opts.watch && opts.release) {
|
|
157
|
+
throw new Error('Cannot use --watch and --release together. Watch mode is for development only.');
|
|
158
|
+
}
|
|
159
|
+
const project = new Project({
|
|
160
|
+
tsConfigFilePath: path.join(process.cwd(), 'tsconfig.json'),
|
|
161
|
+
manipulationSettings: {
|
|
162
|
+
indentationText: IndentationText.TwoSpaces,
|
|
163
|
+
},
|
|
177
164
|
});
|
|
165
|
+
const cwd = process.cwd();
|
|
166
|
+
let makePhases = new Set();
|
|
167
|
+
// If specific steps are provided, override automatic inference
|
|
168
|
+
if (steps.length > 0) {
|
|
169
|
+
makePhases = makePhases.union(requiredMakePhasesForArgs(steps));
|
|
170
|
+
}
|
|
171
|
+
else if (opts.alwaysMake) {
|
|
172
|
+
makePhases = ALL_MAKE_PHASES;
|
|
173
|
+
}
|
|
174
|
+
// Use @parcel/watcher to get changes since last snapshot
|
|
175
|
+
else {
|
|
176
|
+
try {
|
|
177
|
+
// Check if snapshot exists - if not, do a full build
|
|
178
|
+
await access(SNAPSHOT_PATH);
|
|
179
|
+
// Get events since last snapshot
|
|
180
|
+
const events = await getEventsSince(cwd, SNAPSHOT_PATH);
|
|
181
|
+
if (events.length > 0) {
|
|
182
|
+
// Analyze which files changed and determine what needs to be rebuilt
|
|
183
|
+
makePhases = makePhases.union(await requiredMakePhasesForChanges(events));
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
catch (err) {
|
|
187
|
+
// No snapshot exists yet, or error reading it - do a full build
|
|
188
|
+
makePhases = ALL_MAKE_PHASES;
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
// Execute build pipeline conditionally
|
|
192
|
+
await executeBuildSteps(project, makePhases);
|
|
193
|
+
// Write snapshot for next incremental build
|
|
194
|
+
await writeSnapshot(cwd, SNAPSHOT_PATH);
|
|
195
|
+
if (opts.release) {
|
|
196
|
+
await build({
|
|
197
|
+
...createBuildConfig(CLIENT_BUILD),
|
|
198
|
+
configFile: false,
|
|
199
|
+
});
|
|
200
|
+
await build({
|
|
201
|
+
...createBuildConfig(SERVER_BUILD),
|
|
202
|
+
configFile: false,
|
|
203
|
+
});
|
|
204
|
+
}
|
|
205
|
+
// Start watch mode if requested
|
|
206
|
+
if (opts.watch) {
|
|
207
|
+
logInfo('Watching for changes...');
|
|
208
|
+
const subscription = await ParcelWatcher.subscribe(cwd, async (err, events) => {
|
|
209
|
+
if (err) {
|
|
210
|
+
logger.error('Watch error!', { error: err });
|
|
211
|
+
return;
|
|
212
|
+
}
|
|
213
|
+
// Analyze which files changed and determine what needs to be rebuilt
|
|
214
|
+
const rebuiltAnything = await executeBuildSteps(project, await requiredMakePhasesForChanges(events));
|
|
215
|
+
if (rebuiltAnything) {
|
|
216
|
+
// Write snapshot after successful rebuild
|
|
217
|
+
await writeSnapshot(cwd, SNAPSHOT_PATH);
|
|
218
|
+
logInfo('Rebuild complete. Watching for changes...');
|
|
219
|
+
}
|
|
220
|
+
});
|
|
221
|
+
// Keep the process running
|
|
222
|
+
process.on('SIGINT', async () => {
|
|
223
|
+
await subscription.unsubscribe();
|
|
224
|
+
process.exit(0);
|
|
225
|
+
});
|
|
226
|
+
}
|
|
178
227
|
}
|
|
179
228
|
//# sourceMappingURL=build.js.map
|
package/dist/build.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"build.js","sourceRoot":"","sources":["../src/build.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"build.js","sourceRoot":"","sources":["../src/build.ts"],"names":[],"mappings":"AAAA,OAAO,aAAa,EAAE,EAAC,cAAc,EAAE,aAAa,EAAC,MAAM,iBAAiB,CAAC;AAC7E,OAAO,EAAC,KAAK,EAAC,MAAM,oBAAoB,CAAC;AACzC,OAAO,EAAC,MAAM,EAAE,QAAQ,EAAC,MAAM,kBAAkB,CAAC;AAClD,OAAO,IAAI,MAAM,WAAW,CAAC;AAC7B,OAAO,EAAC,eAAe,EAAE,OAAO,EAAC,MAAM,UAAU,CAAC;AAClD,OAAO,EAAC,KAAK,EAAC,MAAM,MAAM,CAAC;AAC3B,OAAO,EACL,yBAAyB,EACzB,uBAAuB,EACvB,kBAAkB,GAEnB,MAAM,eAAe,CAAC;AACvB,OAAO,EAAC,MAAM,EAAE,OAAO,EAAC,MAAM,aAAa,CAAC;AAC5C,OAAO,EAAC,YAAY,EAAE,iBAAiB,EAAE,YAAY,EAAC,MAAM,kBAAkB,CAAC;AAE/E,IAAK,iBAKJ;AALD,WAAK,iBAAiB;IACpB,iFAAgB,CAAA;IAChB,qFAAkB,CAAA;IAClB,2DAAK,CAAA;IACL,2DAAK,CAAA;AACP,CAAC,EALI,iBAAiB,KAAjB,iBAAiB,QAKrB;AAED,MAAM,eAAe,GAAG,IAAI,GAAG,CAAC;IAC9B,iBAAiB,CAAC,gBAAgB;IAClC,iBAAiB,CAAC,kBAAkB;IACpC,iBAAiB,CAAC,KAAK;IACvB,iBAAiB,CAAC,KAAK;CACxB,CAAC,CAAC;AAEH,MAAM,aAAa,GAAG,eAAe,CAAC;AAEtC,KAAK,UAAU,UAAU,CAAC,OAAe,EAAE,IAAc;IACvD,OAAO,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;QACrC,MAAM,KAAK,GAAG,KAAK,CAAC,OAAO,EAAE,IAAI,EAAE;YACjC,GAAG,EAAE,OAAO,CAAC,GAAG,EAAE;YAClB,KAAK,EAAE,SAAS,EAAE,4BAA4B;YAC9C,KAAK,EAAE,IAAI;SACZ,CAAC,CAAC;QAEH,KAAK,CAAC,EAAE,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,EAAE;YACxB,IAAI,IAAI,KAAK,CAAC,EAAE,CAAC;gBACf,OAAO,EAAE,CAAC;YACZ,CAAC;iBAAM,CAAC;gBACN,MAAM,CAAC,IAAI,KAAK,CAAC,iCAAiC,IAAI,EAAE,CAAC,CAAC,CAAC;YAC7D,CAAC;QACH,CAAC,CAAC,CAAC;QAEH,KAAK,CAAC,EAAE,CAAC,OAAO,EAAE,MAAM,CAAC,CAAC;IAC5B,CAAC,CAAC,CAAC;AACL,CAAC;AAED,KAAK,UAAU,gBAAgB;IAC7B,MAAM,SAAS,GAAG,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,GAAG,EAAE,EAAE,cAAc,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC;IAC5E,MAAM,UAAU,CAAC,SAAS,EAAE,EAAE,CAAC,CAAC;AAClC,CAAC;AAED,KAAK,UAAU,gBAAgB;IAC7B,MAAM,SAAS,GAAG,IAAI,CAAC,IAAI,CACzB,OAAO,CAAC,GAAG,EAAE,EACb,cAAc,EACd,MAAM,EACN,gBAAgB,CACjB,CAAC;IACF,MAAM,UAAU,CAAC,SAAS,EAAE,EAAE,CAAC,CAAC;AAClC,CAAC;AAED,SAAS,uBAAuB,CAAC,QAAgB,EAAE,OAAe;IAChE,uBAAuB;IACvB,IAAI,QAAQ,CAAC,QAAQ,CAAC,eAAe,CAAC,EAAE,CAAC;QACvC,OAAO,KAAK,CAAC;IACf,CAAC;IACD,OAAO,kBAAkB,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;AAC1C,CAAC;AAED,SAAS,oBAAoB,CAAC,QAAgB,EAAE,OAAe;IAC7D,uBAAuB;IACvB,IAAI,QAAQ,CAAC,QAAQ,CAAC,eAAe,CAAC,EAAE,CAAC;QACvC,OAAO,KAAK,CAAC;IACf,CAAC;IACD,4BAA4B;IAC5B,OAAO,SAAS,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;AACjC,CAAC;AAED,SAAS,uBAAuB,CAAC,QAAgB,EAAE,OAAe;IAChE,uBAAuB;IACvB,IAAI,QAAQ,CAAC,QAAQ,CAAC,eAAe,CAAC,EAAE,CAAC;QACvC,OAAO,KAAK,CAAC;IACf,CAAC;IACD,OAAO,CACL,0CAA0C,CAAC,IAAI,CAAC,OAAO,CAAC;QACxD,4CAA4C,CAAC,IAAI,CAAC,OAAO,CAAC,CAC3D,CAAC;AACJ,CAAC;AAED,KAAK,UAAU,4BAA4B,CACzC,MAA2C;IAE3C,IAAI,UAAU,GAAG,IAAI,GAAG,EAAqB,CAAC;IAE9C,MAAM,OAAO,CAAC,GAAG,CACf,MAAM,CAAC,GAAG,CAAC,KAAK,EAAE,KAAK,EAAE,EAAE;QACzB,MAAM,QAAQ,GAAG,KAAK,CAAC,IAAI,CAAC;QAE5B,gCAAgC;QAChC,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,aAAa,CAAC,EAAE,CAAC;YACnC,OAAO;QACT,CAAC;QAED,oFAAoF;QACpF,IAAI,KAAK,CAAC,IAAI,KAAK,QAAQ,EAAE,CAAC;YAC5B,UAAU,GAAG,eAAe,CAAC;YAC7B,OAAO;QACT,CAAC;QAED,6CAA6C;QAC7C,IAAI,CAAC;YACH,MAAM,OAAO,GAAG,MAAM,QAAQ,CAAC,QAAQ,EAAE,OAAO,CAAC,CAAC;YAElD,IAAI,uBAAuB,CAAC,QAAQ,EAAE,OAAO,CAAC,EAAE,CAAC;gBAC/C,UAAU,CAAC,GAAG,CAAC,iBAAiB,CAAC,gBAAgB,CAAC,CAAC;gBACnD,UAAU,CAAC,GAAG,CAAC,iBAAiB,CAAC,kBAAkB,CAAC,CAAC;YACvD,CAAC;YAED,IAAI,oBAAoB,CAAC,QAAQ,EAAE,OAAO,CAAC,EAAE,CAAC;gBAC5C,UAAU,CAAC,GAAG,CAAC,iBAAiB,CAAC,KAAK,CAAC,CAAC;gBACxC,UAAU,CAAC,GAAG,CAAC,iBAAiB,CAAC,KAAK,CAAC,CAAC,CAAC,gCAAgC;YAC3E,CAAC;YAED,IAAI,uBAAuB,CAAC,QAAQ,EAAE,OAAO,CAAC,EAAE,CAAC;gBAC/C,UAAU,CAAC,GAAG,CAAC,iBAAiB,CAAC,KAAK,CAAC,CAAC;YAC1C,CAAC;QACH,CAAC;QAAC,MAAM,CAAC;YACP,kEAAkE;YAClE,UAAU,GAAG,eAAe,CAAC;QAC/B,CAAC;IACH,CAAC,CAAC,CACH,CAAC;IAEF,OAAO,UAAU,CAAC;AACpB,CAAC;AAED,SAAS,yBAAyB,CAAC,KAAe;IAChD,MAAM,UAAU,GAAG,IAAI,GAAG,CAAC,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,CAAC,CAAC,CAAC;IAC1D,MAAM,KAAK,GAAG,IAAI,GAAG,EAAqB,CAAC;IAE3C,KAAK,MAAM,IAAI,IAAI,KAAK,EAAE,CAAC;QACzB,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC;YAC1B,MAAM,IAAI,KAAK,CACb,uBAAuB,IAAI,0CAA0C,CACtE,CAAC;QACJ,CAAC;QAED,QAAQ,IAAI,EAAE,CAAC;YACb,KAAK,QAAQ;gBACX,KAAK,CAAC,GAAG,CAAC,iBAAiB,CAAC,KAAK,CAAC,CAAC;gBACnC,MAAM;YACR,KAAK,OAAO;gBACV,KAAK,CAAC,GAAG,CAAC,iBAAiB,CAAC,KAAK,CAAC,CAAC;gBAEnC,MAAM;YACR,KAAK,QAAQ;gBACX,KAAK,CAAC,GAAG,CAAC,iBAAiB,CAAC,gBAAgB,CAAC,CAAC;gBAC9C,KAAK,CAAC,GAAG,CAAC,iBAAiB,CAAC,kBAAkB,CAAC,CAAC;gBAChD,MAAM;QACV,CAAC;IACH,CAAC;IAED,OAAO,KAAK,CAAC;AACf,CAAC;AAED,KAAK,UAAU,iBAAiB,CAC9B,OAAgB,EAChB,KAA6B;IAE7B,IAAI,eAAe,GAAG,KAAK,CAAC;IAC5B,IAAI,cAAc,GAAiC,SAAS,CAAC;IAE7D,IAAI,KAAK,CAAC,GAAG,CAAC,iBAAiB,CAAC,gBAAgB,CAAC,EAAE,CAAC;QAClD,OAAO,CAAC,wCAAwC,CAAC,CAAC;QAClD,cAAc,GAAG,MAAM,uBAAuB,CAAC,OAAO,CAAC,CAAC;QACxD,eAAe,GAAG,IAAI,CAAC;IACzB,CAAC;IAED,IAAI,KAAK,CAAC,GAAG,CAAC,iBAAiB,CAAC,KAAK,CAAC,EAAE,CAAC;QACvC,OAAO,CAAC,2BAA2B,CAAC,CAAC;QACrC,MAAM,gBAAgB,EAAE,CAAC;QACzB,eAAe,GAAG,IAAI,CAAC;IACzB,CAAC;IAED,IAAI,KAAK,CAAC,GAAG,CAAC,iBAAiB,CAAC,KAAK,CAAC,EAAE,CAAC;QACvC,OAAO,CAAC,2BAA2B,CAAC,CAAC;QACrC,MAAM,gBAAgB,EAAE,CAAC;QACzB,eAAe,GAAG,IAAI,CAAC;IACzB,CAAC;IAED,IAAI,KAAK,CAAC,GAAG,CAAC,iBAAiB,CAAC,kBAAkB,CAAC,EAAE,CAAC;QACpD,OAAO,CAAC,0CAA0C,CAAC,CAAC;QACpD,MAAM,yBAAyB,CAAC,OAAO,EAAE,cAAc,CAAC,CAAC;QACzD,eAAe,GAAG,IAAI,CAAC;IACzB,CAAC;IAED,OAAO,eAAe,CAAC;AACzB,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,WAAW,CAC/B,KAAe,EACf,IAIC;IAED,IAAI,IAAI,CAAC,KAAK,IAAI,IAAI,CAAC,OAAO,EAAE,CAAC;QAC/B,MAAM,IAAI,KAAK,CACb,gFAAgF,CACjF,CAAC;IACJ,CAAC;IAED,MAAM,OAAO,GAAG,IAAI,OAAO,CAAC;QAC1B,gBAAgB,EAAE,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,GAAG,EAAE,EAAE,eAAe,CAAC;QAC3D,oBAAoB,EAAE;YACpB,eAAe,EAAE,eAAe,CAAC,SAAS;SAC3C;KACF,CAAC,CAAC;IAEH,MAAM,GAAG,GAAG,OAAO,CAAC,GAAG,EAAE,CAAC;IAC1B,IAAI,UAAU,GAAG,IAAI,GAAG,EAAqB,CAAC;IAE9C,+DAA+D;IAC/D,IAAI,KAAK,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;QACrB,UAAU,GAAG,UAAU,CAAC,KAAK,CAAC,yBAAyB,CAAC,KAAK,CAAC,CAAC,CAAC;IAClE,CAAC;SAAM,IAAI,IAAI,CAAC,UAAU,EAAE,CAAC;QAC3B,UAAU,GAAG,eAAe,CAAC;IAC/B,CAAC;IACD,yDAAyD;SACpD,CAAC;QACJ,IAAI,CAAC;YACH,qDAAqD;YACrD,MAAM,MAAM,CAAC,aAAa,CAAC,CAAC;YAE5B,iCAAiC;YACjC,MAAM,MAAM,GAAG,MAAM,cAAc,CAAC,GAAG,EAAE,aAAa,CAAC,CAAC;YAExD,IAAI,MAAM,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;gBACtB,qEAAqE;gBACrE,UAAU,GAAG,UAAU,CAAC,KAAK,CAC3B,MAAM,4BAA4B,CAAC,MAAM,CAAC,CAC3C,CAAC;YACJ,CAAC;QACH,CAAC;QAAC,OAAO,GAAG,EAAE,CAAC;YACb,gEAAgE;YAChE,UAAU,GAAG,eAAe,CAAC;QAC/B,CAAC;IACH,CAAC;IAED,uCAAuC;IACvC,MAAM,iBAAiB,CAAC,OAAO,EAAE,UAAU,CAAC,CAAC;IAE7C,4CAA4C;IAC5C,MAAM,aAAa,CAAC,GAAG,EAAE,aAAa,CAAC,CAAC;IAExC,IAAI,IAAI,CAAC,OAAO,EAAE,CAAC;QACjB,MAAM,KAAK,CAAC;YACV,GAAG,iBAAiB,CAAC,YAAY,CAAC;YAClC,UAAU,EAAE,KAAK;SAClB,CAAC,CAAC;QAEH,MAAM,KAAK,CAAC;YACV,GAAG,iBAAiB,CAAC,YAAY,CAAC;YAClC,UAAU,EAAE,KAAK;SAClB,CAAC,CAAC;IACL,CAAC;IAED,gCAAgC;IAChC,IAAI,IAAI,CAAC,KAAK,EAAE,CAAC;QACf,OAAO,CAAC,yBAAyB,CAAC,CAAC;QAEnC,MAAM,YAAY,GAAG,MAAM,aAAa,CAAC,SAAS,CAChD,GAAG,EACH,KAAK,EAAE,GAAG,EAAE,MAAM,EAAE,EAAE;YACpB,IAAI,GAAG,EAAE,CAAC;gBACR,MAAM,CAAC,KAAK,CAAC,cAAc,EAAE,EAAC,KAAK,EAAE,GAAG,EAAC,CAAC,CAAC;gBAC3C,OAAO;YACT,CAAC;YAED,qEAAqE;YACrE,MAAM,eAAe,GAAG,MAAM,iBAAiB,CAC7C,OAAO,EACP,MAAM,4BAA4B,CAAC,MAAM,CAAC,CAC3C,CAAC;YAEF,IAAI,eAAe,EAAE,CAAC;gBACpB,0CAA0C;gBAC1C,MAAM,aAAa,CAAC,GAAG,EAAE,aAAa,CAAC,CAAC;gBACxC,OAAO,CAAC,2CAA2C,CAAC,CAAC;YACvD,CAAC;QACH,CAAC,CACF,CAAC;QAEF,2BAA2B;QAC3B,OAAO,CAAC,EAAE,CAAC,QAAQ,EAAE,KAAK,IAAI,EAAE;YAC9B,MAAM,YAAY,CAAC,WAAW,EAAE,CAAC;YACjC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;QAClB,CAAC,CAAC,CAAC;IACL,CAAC;AACH,CAAC"}
|
package/dist/devserver.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"devserver.d.ts","sourceRoot":"","sources":["../src/devserver.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"devserver.d.ts","sourceRoot":"","sources":["../src/devserver.ts"],"names":[],"mappings":"AAsBA,wBAAsB,cAAc,CAAC,IAAI,EAAE;IAAC,IAAI,EAAE,MAAM,CAAA;CAAC,iBAmCxD"}
|
package/dist/devserver.js
CHANGED
|
@@ -2,10 +2,11 @@ import cookieParser from 'cookie-parser';
|
|
|
2
2
|
import dotenv from 'dotenv';
|
|
3
3
|
import express from 'express';
|
|
4
4
|
import { readFile } from 'node:fs/promises';
|
|
5
|
-
import pc from 'picocolors';
|
|
6
5
|
import { loadConfig } from 'pastoria-config';
|
|
6
|
+
import pc from 'picocolors';
|
|
7
7
|
import { createServer as createViteServer } from 'vite';
|
|
8
|
-
import {
|
|
8
|
+
import { logInfo } from './logger.js';
|
|
9
|
+
import { CLIENT_BUILD, createBuildConfig } from './vite_plugin.js';
|
|
9
10
|
export async function startDevserver(opts) {
|
|
10
11
|
dotenv.config();
|
|
11
12
|
const buildConfig = createBuildConfig(CLIENT_BUILD);
|
|
@@ -29,7 +30,7 @@ export async function startDevserver(opts) {
|
|
|
29
30
|
console.error(err);
|
|
30
31
|
}
|
|
31
32
|
else {
|
|
32
|
-
|
|
33
|
+
logInfo(pc.cyan(`Listening on port ${opts.port}!`));
|
|
33
34
|
}
|
|
34
35
|
});
|
|
35
36
|
}
|
package/dist/devserver.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"devserver.js","sourceRoot":"","sources":["../src/devserver.ts"],"names":[],"mappings":"AAAA,OAAO,YAAY,MAAM,eAAe,CAAC;AACzC,OAAO,MAAM,MAAM,QAAQ,CAAC;AAC5B,OAAO,OAAO,MAAM,SAAS,CAAC;AAC9B,OAAO,EAAC,QAAQ,EAAC,MAAM,kBAAkB,CAAC;AAC1C,OAAO,
|
|
1
|
+
{"version":3,"file":"devserver.js","sourceRoot":"","sources":["../src/devserver.ts"],"names":[],"mappings":"AAAA,OAAO,YAAY,MAAM,eAAe,CAAC;AACzC,OAAO,MAAM,MAAM,QAAQ,CAAC;AAC5B,OAAO,OAAO,MAAM,SAAS,CAAC;AAC9B,OAAO,EAAC,QAAQ,EAAC,MAAM,kBAAkB,CAAC;AAC1C,OAAO,EAAC,UAAU,EAAiB,MAAM,iBAAiB,CAAC;AAC3D,OAAO,EAAE,MAAM,YAAY,CAAC;AAC5B,OAAO,EAAC,YAAY,IAAI,gBAAgB,EAAgB,MAAM,MAAM,CAAC;AACrE,OAAO,EAAC,OAAO,EAAC,MAAM,aAAa,CAAC;AACpC,OAAO,EAAC,YAAY,EAAE,iBAAiB,EAAC,MAAM,kBAAkB,CAAC;AAcjE,MAAM,CAAC,KAAK,UAAU,cAAc,CAAC,IAAoB;IACvD,MAAM,CAAC,MAAM,EAAE,CAAC;IAEhB,MAAM,WAAW,GAAG,iBAAiB,CAAC,YAAY,CAAC,CAAC;IACpD,MAAM,IAAI,GAAG,MAAM,gBAAgB,CAAC;QAClC,GAAG,WAAW;QACd,UAAU,EAAE,KAAK;QACjB,MAAM,EAAE,EAAC,cAAc,EAAE,IAAI,EAAC;KAC/B,CAAC,CAAC;IAEH,MAAM,MAAM,GAAG,MAAM,UAAU,EAAE,CAAC;IAElC,MAAM,GAAG,GAAG,OAAO,EAAE,CAAC;IACtB,GAAG,CAAC,GAAG,CAAC,YAAY,EAAE,CAAC,CAAC;IACxB,GAAG,CAAC,GAAG,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;IAC1B,GAAG,CAAC,GAAG,CAAC,KAAK,EAAE,GAAG,EAAE,GAAG,EAAE,IAAI,EAAE,EAAE;QAC/B,MAAM,gBAAgB,GAAG,IAAI,CAAC,KAAK,CACjC,MAAM,QAAQ,CAAC,6CAA6C,EAAE,OAAO,CAAC,CACvE,CAAC;QAEF,MAAM,EAAC,aAAa,EAAC,GAAG,CAAC,MAAM,IAAI,CAAC,aAAa,CAC/C,mCAAmC,CACpC,CAAgB,CAAC;QAElB,MAAM,OAAO,GAAG,aAAa,CAAC,gBAAgB,EAAE,MAAM,CAAC,CAAC;QACxD,OAAO,CAAC,GAAG,EAAE,GAAG,EAAE,IAAI,CAAC,CAAC;IAC1B,CAAC,CAAC,CAAC;IAEH,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE;QACpC,IAAI,GAAG,EAAE,CAAC;YACR,OAAO,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;QACrB,CAAC;aAAM,CAAC;YACN,OAAO,CAAC,EAAE,CAAC,IAAI,CAAC,qBAAqB,IAAI,CAAC,IAAI,GAAG,CAAC,CAAC,CAAC;QACtD,CAAC;IACH,CAAC,CAAC,CAAC;AACL,CAAC"}
|
package/dist/generate.d.ts
CHANGED
|
@@ -25,5 +25,37 @@
|
|
|
25
25
|
* The generator automatically creates Zod schemas for route parameters based on
|
|
26
26
|
* TypeScript types, enabling runtime validation and type safety.
|
|
27
27
|
*/
|
|
28
|
-
|
|
28
|
+
import { Project, SourceFile, Symbol, ts } from 'ts-morph';
|
|
29
|
+
type RouterResource = {
|
|
30
|
+
sourceFile: SourceFile;
|
|
31
|
+
symbol: Symbol;
|
|
32
|
+
queries: Map<string, string>;
|
|
33
|
+
entryPoints: Map<string, string>;
|
|
34
|
+
};
|
|
35
|
+
type RouterRoute = {
|
|
36
|
+
sourceFile: SourceFile;
|
|
37
|
+
symbol: Symbol;
|
|
38
|
+
params: Map<string, ts.Type>;
|
|
39
|
+
};
|
|
40
|
+
type ExportedSymbol = {
|
|
41
|
+
sourceFile: SourceFile;
|
|
42
|
+
symbol: Symbol;
|
|
43
|
+
};
|
|
44
|
+
export interface PastoriaMetadata {
|
|
45
|
+
resources: Map<string, RouterResource>;
|
|
46
|
+
routes: Map<string, RouterRoute>;
|
|
47
|
+
serverHandlers: Map<string, ExportedSymbol>;
|
|
48
|
+
appRoot: ExportedSymbol | null;
|
|
49
|
+
gqlContext: ExportedSymbol | null;
|
|
50
|
+
}
|
|
51
|
+
export declare const PASTORIA_TAG_REGEX: RegExp;
|
|
52
|
+
export declare function generatePastoriaExports(project: Project): Promise<PastoriaMetadata>;
|
|
53
|
+
export declare function generatePastoriaArtifacts(project: Project, metadata?: PastoriaMetadata): Promise<void>;
|
|
54
|
+
export interface PastoriaCapabilities {
|
|
55
|
+
hasAppRoot: boolean;
|
|
56
|
+
hasServerHandler: boolean;
|
|
57
|
+
}
|
|
58
|
+
export declare function generateClientEntry({ hasAppRoot, }: PastoriaCapabilities): string;
|
|
59
|
+
export declare function generateServerEntry({ hasAppRoot, hasServerHandler, }: PastoriaCapabilities): string;
|
|
60
|
+
export {};
|
|
29
61
|
//# sourceMappingURL=generate.d.ts.map
|
package/dist/generate.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"generate.d.ts","sourceRoot":"","sources":["../src/generate.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;
|
|
1
|
+
{"version":3,"file":"generate.d.ts","sourceRoot":"","sources":["../src/generate.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AAKH,OAAO,EAEL,OAAO,EACP,UAAU,EACV,MAAM,EAEN,EAAE,EAEH,MAAM,UAAU,CAAC;AAsBlB,KAAK,cAAc,GAAG;IACpB,UAAU,EAAE,UAAU,CAAC;IACvB,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAC7B,WAAW,EAAE,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;CAClC,CAAC;AAEF,KAAK,WAAW,GAAG;IACjB,UAAU,EAAE,UAAU,CAAC;IACvB,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,GAAG,CAAC,MAAM,EAAE,EAAE,CAAC,IAAI,CAAC,CAAC;CAC9B,CAAC;AAEF,KAAK,cAAc,GAAG;IACpB,UAAU,EAAE,UAAU,CAAC;IACvB,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,MAAM,WAAW,gBAAgB;IAC/B,SAAS,EAAE,GAAG,CAAC,MAAM,EAAE,cAAc,CAAC,CAAC;IACvC,MAAM,EAAE,GAAG,CAAC,MAAM,EAAE,WAAW,CAAC,CAAC;IACjC,cAAc,EAAE,GAAG,CAAC,MAAM,EAAE,cAAc,CAAC,CAAC;IAC5C,OAAO,EAAE,cAAc,GAAG,IAAI,CAAC;IAC/B,UAAU,EAAE,cAAc,GAAG,IAAI,CAAC;CACnC;AAGD,eAAO,MAAM,kBAAkB,QAC6B,CAAC;AA+qB7D,wBAAsB,uBAAuB,CAAC,OAAO,EAAE,OAAO,6BAM7D;AAED,wBAAsB,yBAAyB,CAC7C,OAAO,EAAE,OAAO,EAChB,QAAQ,mBAAmC,iBAK5C;AAED,MAAM,WAAW,oBAAoB;IACnC,UAAU,EAAE,OAAO,CAAC;IACpB,gBAAgB,EAAE,OAAO,CAAC;CAC3B;AAED,wBAAgB,mBAAmB,CAAC,EAClC,UAAU,GACX,EAAE,oBAAoB,GAAG,MAAM,CAkB/B;AAED,wBAAgB,mBAAmB,CAAC,EAClC,UAAU,EACV,gBAAgB,GACjB,EAAE,oBAAoB,GAAG,MAAM,CA6D/B"}
|