@baeta/generator-sdk 1.0.1 → 1.0.3
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 +18 -0
- package/dist/index.d.ts +19 -8
- package/dist/index.js +42 -18
- package/dist/index.js.map +1 -1
- package/package.json +5 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @baeta/generator-sdk
|
|
2
2
|
|
|
3
|
+
## 1.0.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`c180429`](https://github.com/andreisergiu98/baeta/commit/c180429bbf78b305e9f2b4f55a619ecd49bb0925) Thanks [@andreisergiu98](https://github.com/andreisergiu98)! - Fix npm tag for latest version
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`c180429`](https://github.com/andreisergiu98/baeta/commit/c180429bbf78b305e9f2b4f55a619ecd49bb0925)]:
|
|
10
|
+
- @baeta/plugin@1.0.2
|
|
11
|
+
- @baeta/util-path@1.0.2
|
|
12
|
+
|
|
13
|
+
## 1.0.2
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- [`7cbd2ef`](https://github.com/andreisergiu98/baeta/commit/7cbd2ef5b7697f703e4cc6f8d9612c7d01a10dd1) Thanks [@andreisergiu98](https://github.com/andreisergiu98)! - Add biome disable comment for generated files
|
|
18
|
+
|
|
19
|
+
- [`c7b9c05`](https://github.com/andreisergiu98/baeta/commit/c7b9c0523eb9827c99b2bcfc7dbe02f5ef389f21) Thanks [@andreisergiu98](https://github.com/andreisergiu98)! - Allow import from packages for scalars and context
|
|
20
|
+
|
|
3
21
|
## 1.0.1
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -9,15 +9,20 @@ import { PluginType } from '@baeta/plugin';
|
|
|
9
9
|
*/
|
|
10
10
|
interface FileOptions {
|
|
11
11
|
/**
|
|
12
|
-
*
|
|
13
|
-
* @defaultValue
|
|
12
|
+
* Disable generation notice at the beginning of the file.
|
|
13
|
+
* @defaultValue false
|
|
14
14
|
*/
|
|
15
|
-
|
|
15
|
+
disableGenerationNoticeHeader?: boolean;
|
|
16
16
|
/**
|
|
17
|
-
*
|
|
18
|
-
* @defaultValue
|
|
17
|
+
* Disable eslint-disable comment at the beginning of the file.
|
|
18
|
+
* @defaultValue false
|
|
19
19
|
*/
|
|
20
|
-
|
|
20
|
+
disableEslintHeader?: boolean;
|
|
21
|
+
/**
|
|
22
|
+
* Disable biome comment at the beginning of the file.
|
|
23
|
+
* @defaultValue false
|
|
24
|
+
*/
|
|
25
|
+
disableBiomeHeader?: boolean;
|
|
21
26
|
/**
|
|
22
27
|
* Add custom header at the beginning of the file.
|
|
23
28
|
*/
|
|
@@ -103,7 +108,10 @@ interface GeneratorOptions {
|
|
|
103
108
|
* Supports global types and imports.
|
|
104
109
|
* @example { DateTime: 'Date', JSON: 'Record<string, unknown>' } * @defaultValue undefined
|
|
105
110
|
*/
|
|
106
|
-
scalars?: Record<string, string
|
|
111
|
+
scalars?: Record<string, string | {
|
|
112
|
+
input: string;
|
|
113
|
+
output: string;
|
|
114
|
+
}>;
|
|
107
115
|
/**
|
|
108
116
|
* Configuration options for generated files.
|
|
109
117
|
*/
|
|
@@ -127,7 +135,10 @@ interface NormalizedGeneratorOptions {
|
|
|
127
135
|
baseTypesPath: string;
|
|
128
136
|
contextType?: string;
|
|
129
137
|
extensions?: string;
|
|
130
|
-
scalars?: Record<string, string
|
|
138
|
+
scalars?: Record<string, string | {
|
|
139
|
+
input: string;
|
|
140
|
+
output: string;
|
|
141
|
+
}>;
|
|
131
142
|
fileOptions?: FileOptions;
|
|
132
143
|
loaders?: Loader[];
|
|
133
144
|
importExtension?: '.js' | '.ts';
|
package/dist/index.js
CHANGED
|
@@ -8,8 +8,9 @@ function loadOptions(options) {
|
|
|
8
8
|
const defaultBaseTypesRoot = resolve(modulesDir, "../__generated__/types.ts");
|
|
9
9
|
const baseTypesRoot = resolve(cwd, options.baseTypesPath || defaultBaseTypesRoot);
|
|
10
10
|
const baseTypesPath = posixPath(relative(modulesDir, baseTypesRoot));
|
|
11
|
-
const contextType =
|
|
11
|
+
const contextType = options.contextType && resolvePotentialImport(cwd, baseTypesRoot, options.contextType);
|
|
12
12
|
const extensions = resolveExtensionPath(modulesDir, moduleDefinitionName, options.extensions);
|
|
13
|
+
const scalars = resolveScalars(cwd, baseTypesRoot, options.scalars);
|
|
13
14
|
return {
|
|
14
15
|
cwd,
|
|
15
16
|
schemas,
|
|
@@ -18,25 +19,43 @@ function loadOptions(options) {
|
|
|
18
19
|
baseTypesPath,
|
|
19
20
|
contextType,
|
|
20
21
|
extensions,
|
|
21
|
-
scalars
|
|
22
|
+
scalars,
|
|
22
23
|
fileOptions: options.fileOptions,
|
|
23
24
|
loaders: options.loaders,
|
|
24
25
|
importExtension: options.importExtension === false ? void 0 : options.importExtension ?? ".ts"
|
|
25
26
|
};
|
|
26
27
|
}
|
|
27
|
-
function
|
|
28
|
-
if (!
|
|
29
|
-
return;
|
|
28
|
+
function resolvePotentialImport(root, baseTypesRoot, path3) {
|
|
29
|
+
if (!path3.includes("#")) {
|
|
30
|
+
return path3;
|
|
30
31
|
}
|
|
31
|
-
if (isAbsolute(
|
|
32
|
-
return
|
|
32
|
+
if (isAbsolute(path3) || path3.startsWith("@")) {
|
|
33
|
+
return path3;
|
|
33
34
|
}
|
|
34
|
-
if (
|
|
35
|
-
return
|
|
35
|
+
if (path3[0] === "!") {
|
|
36
|
+
return path3.slice(1);
|
|
36
37
|
}
|
|
37
|
-
const contextTypeRoot = resolve(root,
|
|
38
|
+
const contextTypeRoot = resolve(root, path3);
|
|
38
39
|
return posixPath(relative(join(baseTypesRoot, "../"), contextTypeRoot));
|
|
39
40
|
}
|
|
41
|
+
function resolveScalars(root, baseTypesRoot, scalars) {
|
|
42
|
+
if (!scalars) {
|
|
43
|
+
return;
|
|
44
|
+
}
|
|
45
|
+
const resolved = {};
|
|
46
|
+
for (const key in scalars) {
|
|
47
|
+
const value = scalars[key];
|
|
48
|
+
if (typeof value === "string") {
|
|
49
|
+
resolved[key] = resolvePotentialImport(root, baseTypesRoot, value);
|
|
50
|
+
} else {
|
|
51
|
+
resolved[key] = {
|
|
52
|
+
input: resolvePotentialImport(root, baseTypesRoot, value.input),
|
|
53
|
+
output: resolvePotentialImport(root, baseTypesRoot, value.output)
|
|
54
|
+
};
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
return resolved;
|
|
58
|
+
}
|
|
40
59
|
function resolveExtensionPath(modulesDir, moduleDefinitionName, extensionsPath) {
|
|
41
60
|
if (!extensionsPath) {
|
|
42
61
|
return;
|
|
@@ -51,7 +70,7 @@ function resolveExtensionPath(modulesDir, moduleDefinitionName, extensionsPath)
|
|
|
51
70
|
}
|
|
52
71
|
|
|
53
72
|
// lib/file.ts
|
|
54
|
-
import fs from "
|
|
73
|
+
import fs from "fs/promises";
|
|
55
74
|
import { dirname, extname } from "@baeta/util-path";
|
|
56
75
|
var File = class {
|
|
57
76
|
constructor(filename, content, tag, options) {
|
|
@@ -84,16 +103,20 @@ var File = class {
|
|
|
84
103
|
}
|
|
85
104
|
buildHeader() {
|
|
86
105
|
const headerItems = [];
|
|
87
|
-
if (this.options?.
|
|
106
|
+
if (this.options?.disableGenerationNoticeHeader !== true) {
|
|
88
107
|
const comment = this.createComment(
|
|
89
108
|
"This file was generated by Baeta. Do not edit it directly. All changes will be overwritten by the generator."
|
|
90
109
|
);
|
|
91
110
|
headerItems.push(comment);
|
|
92
111
|
}
|
|
93
|
-
if (this.options?.
|
|
112
|
+
if (this.options?.disableEslintHeader !== true) {
|
|
94
113
|
const comment = this.createComment("eslint-disable");
|
|
95
114
|
headerItems.push(comment);
|
|
96
115
|
}
|
|
116
|
+
if (this.options?.disableBiomeHeader !== true) {
|
|
117
|
+
const comment = this.createComment("@biome-ignore-all: generated file");
|
|
118
|
+
headerItems.push(comment);
|
|
119
|
+
}
|
|
97
120
|
if (this.options?.addHeader) {
|
|
98
121
|
const customHeader = this.options.addHeader(this.filename, this.content, this.tag);
|
|
99
122
|
headerItems.push(customHeader);
|
|
@@ -115,13 +138,14 @@ var File = class {
|
|
|
115
138
|
};
|
|
116
139
|
|
|
117
140
|
// lib/file-block.ts
|
|
118
|
-
import { mkdir, open, writeFile } from "
|
|
141
|
+
import { mkdir, open, writeFile } from "fs/promises";
|
|
119
142
|
import { dirname as dirname2 } from "@baeta/util-path";
|
|
120
143
|
var FileBlock = class extends File {
|
|
121
144
|
constructor(filename, content, start, end, tag, options) {
|
|
122
145
|
super(filename, content, tag, {
|
|
123
|
-
|
|
124
|
-
|
|
146
|
+
disableBiomeHeader: options?.disableBiomeHeader ?? true,
|
|
147
|
+
disableEslintHeader: options?.disableEslintHeader ?? true,
|
|
148
|
+
disableGenerationNoticeHeader: options?.disableGenerationNoticeHeader ?? true
|
|
125
149
|
});
|
|
126
150
|
this.filename = filename;
|
|
127
151
|
this.content = content;
|
|
@@ -162,7 +186,7 @@ var FileBlock = class extends File {
|
|
|
162
186
|
const fd = await open(this.filename, "r+");
|
|
163
187
|
const existingContent = await fd.readFile("utf-8");
|
|
164
188
|
return [existingContent, fd];
|
|
165
|
-
} catch
|
|
189
|
+
} catch {
|
|
166
190
|
return ["", null];
|
|
167
191
|
}
|
|
168
192
|
}
|
|
@@ -269,7 +293,7 @@ var GeneratorPluginVersion = /* @__PURE__ */ ((GeneratorPluginVersion2) => {
|
|
|
269
293
|
GeneratorPluginVersion2["V1"] = "v1";
|
|
270
294
|
return GeneratorPluginVersion2;
|
|
271
295
|
})(GeneratorPluginVersion || {});
|
|
272
|
-
var defaultPluginFn = async (
|
|
296
|
+
var defaultPluginFn = async (_ctx, next) => {
|
|
273
297
|
return next();
|
|
274
298
|
};
|
|
275
299
|
var defaultWatchFn = () => ({ include: [], ignore: [] });
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../lib/config.ts","../lib/file.ts","../lib/file-block.ts","../lib/file-manager.ts","../lib/module.ts","../lib/plugin.ts","../lib/watcher.ts","../lib/watcher-ignore.ts"],"sourcesContent":["import { isAbsolute, join, posixPath, relative, resolve } from '@baeta/util-path';\nimport type { FileOptions } from './file.ts';\n\n/**\n * Interface for custom schema loaders.\n */\n// biome-ignore lint/suspicious/noExplicitAny: We don't want to import graphql for this type\nexport interface Loader<TOptions = any> {\n\t// biome-ignore lint/suspicious/noExplicitAny: Same reason as above\n\tload(pointer: string, options?: TOptions): Promise<any[] | null | never>;\n\t// biome-ignore lint/suspicious/noExplicitAny: Same reason as above\n\tloadSync?(pointer: string, options?: TOptions): any[] | null | never;\n}\n\n/**\n * Options for the Baeta Generator.\n */\nexport interface GeneratorOptions {\n\t/**\n\t * Current working directory for resolving relative paths.\n\t * @defaultValue process.cwd()\n\t */\n\tcwd?: string;\n\n\t/**\n\t * Glob pattern(s) to locate GraphQL schema files.\n\t * @defaultValue ```ts\n\t * ['src/∗∗/∗.gql', 'src/∗∗/∗.graphql']\n\t * ```\n\t */\n\tschemas: string[];\n\n\t/**\n\t * Root directory where GraphQL modules are defined.\n\t * @defaultValue 'src/modules'\n\t */\n\tmodulesDir?: string;\n\n\t/**\n\t * Filename for the generated module definition file.\n\t * Contains type definitions and the GraphQL AST.\n\t * @defaultValue 'typedef.ts'\n\t */\n\tmoduleDefinitionName?: string;\n\n\t/**\n\t * Output path for the generated base types file.\n\t * @defaultValue ```ts\n\t * `${modulesDir}/../__generated__/types.ts`\n\t * ```\n\t */\n\tbaseTypesPath?: string;\n\n\t/**\n\t * Path to the context type definition.\n\t * Supports both named and default exports.\n\t * @example contextType: 'src/types/context.ts#Context' // for named export\n\t * @example contextType: 'src/types/context.ts' // for default export\n\t * @defaultValue undefined\n\t */\n\tcontextType?: string;\n\n\t/**\n\t * Path to Baeta Extensions (ex. auth-extension).\n\t * Only default export is supported.\n\t * @example extensions: 'src/extensions.ts'\n\t * @defaultValue undefined\n\t */\n\textensions?: string;\n\n\t/**\n\t * Custom scalar type mappings.\n\t * Maps GraphQL scalar types to TypeScript types.\n\t * Supports global types and imports.\n\t * @example { DateTime: 'Date', JSON: 'Record<string, unknown>' }\t * @defaultValue undefined\n\t */\n\tscalars?: Record<string, string>;\n\n\t/**\n\t * Configuration options for generated files.\n\t */\n\tfileOptions?: FileOptions;\n\n\t/**\n\t * Custom schema loaders for processing schema files.\n\t */\n\tloaders?: Loader[];\n\n\t/**\n\t * File extension to use in generated import statements.\n\t * Set to false to omit extensions.\n\t * @defaultValue '.ts'\n\t */\n\timportExtension?: '.js' | '.ts' | false;\n}\n\nexport interface NormalizedGeneratorOptions {\n\tcwd: string;\n\tschemas: string[];\n\tmodulesDir: string;\n\tmoduleDefinitionName: string;\n\tbaseTypesPath: string;\n\tcontextType?: string;\n\textensions?: string;\n\tscalars?: Record<string, string>;\n\tfileOptions?: FileOptions;\n\tloaders?: Loader[];\n\timportExtension?: '.js' | '.ts';\n}\n\nexport function loadOptions(options: GeneratorOptions): NormalizedGeneratorOptions {\n\tconst cwd = posixPath(options.cwd ?? process.cwd());\n\tconst schemas = options.schemas ?? ['src/**/*.graphql'];\n\tconst modulesDir = posixPath(resolve(cwd, options.modulesDir || 'src/modules'));\n\tconst moduleDefinitionName = options.moduleDefinitionName || 'typedef.ts';\n\n\tconst defaultBaseTypesRoot = resolve(modulesDir, '../__generated__/types.ts');\n\tconst baseTypesRoot = resolve(cwd, options.baseTypesPath || defaultBaseTypesRoot);\n\tconst baseTypesPath = posixPath(relative(modulesDir, baseTypesRoot));\n\n\tconst contextType = resolveContextType(cwd, baseTypesRoot, options.contextType);\n\tconst extensions = resolveExtensionPath(modulesDir, moduleDefinitionName, options.extensions);\n\n\treturn {\n\t\tcwd,\n\t\tschemas,\n\t\tmodulesDir,\n\t\tmoduleDefinitionName,\n\t\tbaseTypesPath,\n\t\tcontextType,\n\t\textensions,\n\t\tscalars: options.scalars,\n\t\tfileOptions: options.fileOptions,\n\t\tloaders: options.loaders,\n\t\timportExtension:\n\t\t\toptions.importExtension === false ? undefined : (options.importExtension ?? '.ts'),\n\t};\n}\n\nfunction resolveContextType(root: string, baseTypesRoot: string, contextType?: string) {\n\tif (!contextType) {\n\t\treturn;\n\t}\n\n\tif (isAbsolute(contextType)) {\n\t\treturn contextType;\n\t}\n\n\tif (contextType[0] === '!') {\n\t\treturn contextType.slice(1);\n\t}\n\n\tconst contextTypeRoot = resolve(root, contextType);\n\n\treturn posixPath(relative(join(baseTypesRoot, '../'), contextTypeRoot));\n}\n\nfunction resolveExtensionPath(\n\tmodulesDir: string,\n\tmoduleDefinitionName: string,\n\textensionsPath?: string,\n) {\n\tif (!extensionsPath) {\n\t\treturn;\n\t}\n\n\tif (isAbsolute(extensionsPath)) {\n\t\treturn extensionsPath;\n\t}\n\n\tif (extensionsPath[0] === '!') {\n\t\treturn extensionsPath.slice(1);\n\t}\n\n\treturn posixPath(relative(join(modulesDir, moduleDefinitionName), extensionsPath));\n}\n","import fs from 'node:fs/promises';\nimport { dirname, extname } from '@baeta/util-path';\n\n/**\n * Options for generated files.\n */\nexport interface FileOptions {\n\t/**\n\t * Add generation notice at the beginning of the file.\n\t * @defaultValue true\n\t */\n\taddGenerationNoticeHeader?: boolean;\n\n\t/**\n\t * Add eslint-disable comment at the beginning of the file.\n\t * @defaultValue true\n\t */\n\taddEslintDisableHeader?: boolean;\n\n\t/**\n\t * Add custom header at the beginning of the file.\n\t */\n\taddHeader?: (name: string, content: string, tag: string) => string;\n\n\t/**\n\t * Edit the content of the file before writing it.\n\t */\n\ttransformContent?: (name: string, content: string, tag: string) => string | Promise<string>;\n}\n\nexport class File {\n\tpersisted = false;\n\n\tconstructor(\n\t\tpublic filename: string,\n\t\tpublic content: string,\n\t\tpublic tag: string,\n\t\tprivate options?: FileOptions,\n\t) {}\n\n\twrite = async () => {\n\t\tif (this.persisted) {\n\t\t\treturn;\n\t\t}\n\t\tthis.persisted = true;\n\n\t\tconst dir = dirname(this.filename);\n\t\tawait fs.mkdir(dir, { recursive: true });\n\n\t\tconst content = await this.buildContent();\n\n\t\treturn fs.writeFile(this.filename, content, 'utf-8');\n\t};\n\n\tunlink = async () => {\n\t\tthis.persisted = false;\n\t\treturn fs.unlink(this.filename);\n\t};\n\n\tprotected async buildContent() {\n\t\tconst content = this.buildHeader() + this.content;\n\n\t\tif (this.options?.transformContent) {\n\t\t\treturn this.options.transformContent(this.filename, content, this.tag);\n\t\t}\n\n\t\treturn content;\n\t}\n\n\tprotected buildHeader() {\n\t\tconst headerItems: string[] = [];\n\n\t\tif (this.options?.addGenerationNoticeHeader !== false) {\n\t\t\tconst comment = this.createComment(\n\t\t\t\t'This file was generated by Baeta. Do not edit it directly. All changes will be overwritten by the generator.',\n\t\t\t);\n\t\t\theaderItems.push(comment);\n\t\t}\n\n\t\tif (this.options?.addEslintDisableHeader !== false) {\n\t\t\tconst comment = this.createComment('eslint-disable');\n\t\t\theaderItems.push(comment);\n\t\t}\n\n\t\tif (this.options?.addHeader) {\n\t\t\tconst customHeader = this.options.addHeader(this.filename, this.content, this.tag);\n\t\t\theaderItems.push(customHeader);\n\t\t}\n\n\t\tif (headerItems.length === 0) {\n\t\t\treturn '';\n\t\t}\n\n\t\treturn `${headerItems.join('\\n')}\\n\\n`;\n\t}\n\n\tprotected createComment(comment: string) {\n\t\tconst extension = extname(this.filename);\n\n\t\tif (['.gql', '.graphql'].includes(extension)) {\n\t\t\treturn `# ${comment}`;\n\t\t}\n\n\t\treturn `/* ${comment} */`;\n\t}\n}\n","import { mkdir, open, writeFile } from 'node:fs/promises';\nimport { dirname } from '@baeta/util-path';\nimport { File, type FileOptions } from './file.ts';\n\nexport class FileBlock extends File {\n\tconstructor(\n\t\tpublic filename: string,\n\t\tpublic content: string,\n\t\tpublic start: string,\n\t\tpublic end: string,\n\t\tpublic tag: string,\n\t\toptions?: FileOptions,\n\t) {\n\t\tsuper(filename, content, tag, {\n\t\t\taddEslintDisableHeader: options?.addEslintDisableHeader ?? false,\n\t\t\taddGenerationNoticeHeader: options?.addGenerationNoticeHeader ?? false,\n\t\t});\n\t}\n\n\twrite = async () => {\n\t\tif (this.persisted) {\n\t\t\treturn;\n\t\t}\n\t\tthis.persisted = true;\n\n\t\tconst dir = dirname(this.filename);\n\t\tawait mkdir(dir, { recursive: true });\n\n\t\tconst [existingContent, fd] = await this.getExistingContent();\n\n\t\tthis.content = this.addBlockToContent(existingContent);\n\t\tconst content = await this.buildContent();\n\n\t\tif (fd) {\n\t\t\tawait fd.truncate(0);\n\t\t\tawait fd.write(content, 0, 'utf-8');\n\t\t\tawait fd.close();\n\t\t} else {\n\t\t\tawait writeFile(this.filename, content, 'utf-8');\n\t\t}\n\t};\n\n\tunlink = async () => {\n\t\tthis.persisted = false;\n\n\t\tconst [existingContent, fd] = await this.getExistingContent();\n\n\t\tif (fd) {\n\t\t\tconst [start, end] = this.getSlices(existingContent);\n\t\t\tawait fd.truncate(0);\n\t\t\tawait fd.write(start + end, 0, 'utf-8');\n\t\t\tawait fd.close();\n\t\t}\n\t};\n\n\tprotected async getExistingContent() {\n\t\ttry {\n\t\t\tconst fd = await open(this.filename, 'r+');\n\t\t\tconst existingContent = await fd.readFile('utf-8');\n\t\t\treturn [existingContent, fd] as const;\n\t\t} catch (err) {\n\t\t\treturn ['', null] as const;\n\t\t}\n\t}\n\n\tprotected getSlices(existingContent: string) {\n\t\tconst startMarkerIndex = existingContent.indexOf(this.start);\n\t\tconst endMarkerIndex = existingContent.lastIndexOf(this.end);\n\n\t\tif (startMarkerIndex === -1 || endMarkerIndex === -1) {\n\t\t\treturn [existingContent, '', false] as const;\n\t\t}\n\n\t\treturn [\n\t\t\texistingContent.slice(0, startMarkerIndex),\n\t\t\texistingContent.slice(endMarkerIndex + this.end.length),\n\t\t\ttrue,\n\t\t] as const;\n\t}\n\n\tprotected addBlockToContent(existingContent: string) {\n\t\tconst block = `${this.start}\\n${this.content}\\n${this.end}`;\n\t\tconst [startSlice, endSlice, hasMarkers] = this.getSlices(existingContent);\n\t\tconst padding = hasMarkers ? '' : this.buildPadding(existingContent);\n\t\treturn startSlice + padding + block + endSlice;\n\t}\n\n\tprotected buildPadding(existingContent: string) {\n\t\tif (existingContent === '') {\n\t\t\treturn '';\n\t\t}\n\n\t\tif (existingContent.endsWith('\\n\\n')) {\n\t\t\treturn '';\n\t\t}\n\n\t\tif (existingContent.endsWith('\\n')) {\n\t\t\treturn '\\n';\n\t\t}\n\n\t\treturn '\\n\\n';\n\t}\n}\n","import { File, type FileOptions } from './file.ts';\n\nexport class FileManager {\n\tfiles: File[] = [];\n\n\tconstructor(public fileOptions?: FileOptions) {}\n\n\tcreateAndAdd(filename: string, content: string, tag: string) {\n\t\tconst file = new File(filename, content, tag, this.fileOptions);\n\t\tthis.add(file);\n\t\treturn file;\n\t}\n\n\tadd(...file: File[]) {\n\t\tthis.files.push(...file);\n\t}\n\n\tget(filename: string) {\n\t\treturn this.files.find((file) => file.filename === filename);\n\t}\n\n\tgetAll() {\n\t\treturn this.files;\n\t}\n\n\tgetByTag(tag: string) {\n\t\treturn this.files.filter((file) => file.tag === tag);\n\t}\n\n\tremove(filename: string) {\n\t\tconst index = this.files.findIndex((file) => file.filename === filename);\n\t\tthis.files.splice(index, 1);\n\t}\n\n\tremoveAll() {\n\t\tthis.files = [];\n\t}\n\n\tremoveByTag(tag: string) {\n\t\tthis.files = this.files.filter((file) => file.tag !== tag);\n\t}\n\n\twriteAll() {\n\t\tconst toWrite = this.files.filter((file) => !file.persisted);\n\t\treturn Promise.all(toWrite.map((file) => file.write()));\n\t}\n\n\twriteByTag(tag: string) {\n\t\tconst files = this.getByTag(tag);\n\t\tconst toWrite = files.filter((file) => !file.persisted);\n\t\treturn Promise.all(toWrite.map((file) => file.write()));\n\t}\n\n\tunlinkAll() {\n\t\treturn Promise.all(this.files.map((file) => file.unlink())).then(() => {\n\t\t\t// void\n\t\t});\n\t}\n\n\tgetPersistedFiles() {\n\t\treturn this.files.filter((file) => file.persisted);\n\t}\n}\n","import { camelCase, pascalCase } from 'change-case-all';\n\nexport function getModuleGetName(name: string) {\n\treturn `get${pascalCase(name)}Module`;\n}\n\nexport function getModuleCreateName(name: string) {\n\treturn `create${pascalCase(name)}Module`;\n}\n\nexport function getModuleVariableName(name: string) {\n\treturn camelCase(`${name}Module`);\n}\n","import { PluginType } from '@baeta/plugin';\nimport type { NormalizedGeneratorOptions } from './config.ts';\nimport type { Ctx } from './ctx.ts';\nimport type { Watcher, WatcherFile } from './watcher.ts';\n\nexport enum GeneratorPluginVersion {\n\tV1 = 'v1',\n}\n\nexport type GeneratorPluginV1Fn<Store = unknown> = (\n\tctx: Ctx<Store>,\n\tnext: () => Promise<void>,\n) => Promise<void>;\n\nexport type GeneratorPluginV1ReloadFn = (file: WatcherFile) => void;\n\nexport type GeneratorPluginV1WatchOptions = (\n\toptions: NormalizedGeneratorOptions,\n\twatcher: Watcher,\n\treload: GeneratorPluginV1ReloadFn,\n) => void;\n\nexport type GeneratorPluginV1Factory<Store = unknown> = {\n\tname: string;\n\tactionName: string;\n\tsetup?: GeneratorPluginV1Fn<Store>;\n\tgenerate?: GeneratorPluginV1Fn<Store>;\n\tend?: GeneratorPluginV1Fn<Store>;\n\twatch?: GeneratorPluginV1WatchOptions;\n};\n\nexport interface GeneratorPluginV1<Store = unknown> {\n\tname: string;\n\tactionName: string;\n\tversion: GeneratorPluginVersion.V1;\n\ttype: PluginType.Generator;\n\tsetup: GeneratorPluginV1Fn<Store>;\n\tgenerate: GeneratorPluginV1Fn<Store>;\n\tend: GeneratorPluginV1Fn<Store>;\n\twatch: GeneratorPluginV1WatchOptions;\n}\n\nconst defaultPluginFn: GeneratorPluginV1Fn<unknown> = async (ctx, next) => {\n\treturn next();\n};\n\nconst defaultWatchFn = () => ({ include: [], ignore: [] });\n\nexport function createPluginV1<Store = unknown>(\n\toptions: GeneratorPluginV1Factory<Store>,\n): GeneratorPluginV1<Store> {\n\treturn {\n\t\tname: options.name,\n\t\tactionName: options.actionName,\n\t\tversion: GeneratorPluginVersion.V1,\n\t\ttype: PluginType.Generator,\n\t\tend: options.end ?? defaultPluginFn,\n\t\tgenerate: options.generate ?? defaultPluginFn,\n\t\tsetup: options.setup ?? defaultPluginFn,\n\t\twatch: options.watch ?? defaultWatchFn,\n\t};\n}\n\nexport function isGeneratorPlugin(plugin: {\n\ttype: PluginType;\n}): plugin is GeneratorPluginV1<unknown> {\n\treturn plugin.type === PluginType.Generator;\n}\n\nexport function getGeneratorPlugins(plugins?: Array<{ type: PluginType }>) {\n\tif (!plugins) {\n\t\treturn [];\n\t}\n\treturn plugins.filter(isGeneratorPlugin);\n}\n","import path, { posixPath } from '@baeta/util-path';\nimport {\n\ttype AsyncSubscription,\n\ttype Event,\n\ttype EventType,\n\ttype Options,\n\tsubscribe,\n} from '@parcel/watcher';\nimport micromatch from 'micromatch';\nimport { type MatchPattern, WatcherIgnore } from './watcher-ignore.ts';\n\nexport { micromatch };\nexport const isMatch = micromatch.isMatch;\n\nexport type WatcherListener = (path: WatcherFile) => void;\n\nexport interface WatcherFile {\n\ttype: EventType;\n\tpath: string;\n\trelativePath: string;\n}\nexport class Watcher {\n\tprivate subscription: AsyncSubscription;\n\n\tprivate listeners: Record<EventType, WatcherListener[]> = {\n\t\tcreate: [],\n\t\tupdate: [],\n\t\tdelete: [],\n\t};\n\n\tprivate watcherIgnore: WatcherIgnore;\n\n\tconstructor(\n\t\tprivate readonly cwd: string,\n\t\tprivate readonly options?: Options,\n\t) {\n\t\tthis.watcherIgnore = new WatcherIgnore(cwd);\n\t\tthis.subscription = this.createSubscription();\n\t}\n\n\tonEvents = (err: Error | null, events: Event[]) => {\n\t\tif (err) {\n\t\t\tconsole.error(err);\n\t\t\treturn;\n\t\t}\n\n\t\tconst filteredEvents = events.filter((event) => {\n\t\t\treturn !this.watcherIgnore.isIgnored(posixPath(event.path));\n\t\t});\n\n\t\tfor (const event of filteredEvents) {\n\t\t\tfor (const listener of this.listeners[event.type]) {\n\t\t\t\tlistener({\n\t\t\t\t\ttype: event.type,\n\t\t\t\t\tpath: posixPath(event.path),\n\t\t\t\t\trelativePath: posixPath(path.relative(this.cwd, event.path)),\n\t\t\t\t});\n\t\t\t}\n\t\t}\n\t};\n\n\ton(event: EventType, listener: WatcherListener) {\n\t\tthis.listeners[event].push(listener);\n\t}\n\n\toff(event: EventType, listener: WatcherListener) {\n\t\tthis.listeners[event] = this.listeners[event].filter((l) => l !== listener);\n\t}\n\n\tignore(pattern: MatchPattern) {\n\t\tthis.watcherIgnore.ignore(pattern);\n\t}\n\n\tunignore(pattern: MatchPattern) {\n\t\tthis.watcherIgnore.unignore(pattern);\n\t}\n\n\tcreateSubscription() {\n\t\tconst promise = subscribe(this.cwd, this.onEvents, this.options);\n\n\t\tconst unsubscribe = async () => {\n\t\t\tconst subscription = await promise;\n\t\t\tawait subscription.unsubscribe();\n\t\t};\n\n\t\treturn {\n\t\t\tunsubscribe,\n\t\t};\n\t}\n\n\tclose() {\n\t\treturn this.subscription.unsubscribe();\n\t}\n}\n","import path from '@baeta/util-path';\nimport micromatch from 'micromatch';\n\nexport type MatchFn = (testString: string) => boolean;\nexport type MatchPattern = string | RegExp | MatchFn;\n\nexport class WatcherIgnore {\n\tprivate files: string[] = [];\n\tprivate regexps: RegExp[] = [];\n\tprivate functions: MatchFn[] = [];\n\n\tprivate globs: MatchFn[] = [];\n\tprivate globsMap = new Map<string, MatchFn>();\n\n\tconstructor(private readonly cwd: string) {}\n\n\tignore(pattern: MatchPattern) {\n\t\tif (pattern instanceof RegExp) {\n\t\t\tthis.regexps.push(pattern);\n\t\t\treturn;\n\t\t}\n\n\t\tif (typeof pattern === 'function') {\n\t\t\tthis.functions.push(pattern);\n\t\t\treturn;\n\t\t}\n\n\t\tif (!this.isMicromatch(pattern)) {\n\t\t\tthis.files.push(this.resolveFile(pattern));\n\t\t\treturn;\n\t\t}\n\n\t\tthis.globsMap.set(pattern, micromatch.matcher(pattern));\n\t\tthis.globs = Array.from(this.globsMap.values());\n\t}\n\n\tisMicromatch(pattern: string) {\n\t\tconst result = micromatch.scan(pattern);\n\t\treturn result.isBrace || result.isGlobstar || result.isExtglob || result.isGlob;\n\t}\n\n\tresolveFile(file: string) {\n\t\treturn path.isAbsolute(file) ? file : path.join(this.cwd, file);\n\t}\n\n\tunignore(pattern: MatchPattern) {\n\t\tif (pattern instanceof RegExp) {\n\t\t\tthis.regexps = this.regexps.filter((p) => p !== pattern);\n\t\t\treturn;\n\t\t}\n\n\t\tif (typeof pattern === 'function') {\n\t\t\tthis.functions = this.functions.filter((p) => p !== pattern);\n\t\t\treturn;\n\t\t}\n\n\t\tif (!this.isMicromatch(pattern)) {\n\t\t\tconst file = this.resolveFile(pattern);\n\t\t\tthis.files = this.files.filter((p) => p !== file);\n\t\t\treturn;\n\t\t}\n\n\t\tthis.globsMap.delete(pattern);\n\t\tthis.globs = Array.from(this.globsMap.values());\n\t}\n\n\tisIgnored(path: string) {\n\t\tif (this.files.includes(path)) {\n\t\t\treturn true;\n\t\t}\n\n\t\tif (this.globs.some((f) => f(path))) {\n\t\t\treturn true;\n\t\t}\n\n\t\tif (this.regexps.some((r) => r.test(path))) {\n\t\t\treturn true;\n\t\t}\n\n\t\tif (this.functions.some((f) => f(path))) {\n\t\t\treturn true;\n\t\t}\n\n\t\treturn false;\n\t}\n}\n"],"mappings":"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","names":["dirname","dirname","GeneratorPluginVersion","path","posixPath","micromatch","path","micromatch","posixPath","path"]}
|
|
1
|
+
{"version":3,"sources":["../lib/config.ts","../lib/file.ts","../lib/file-block.ts","../lib/file-manager.ts","../lib/module.ts","../lib/plugin.ts","../lib/watcher.ts","../lib/watcher-ignore.ts"],"sourcesContent":["import { isAbsolute, join, posixPath, relative, resolve } from '@baeta/util-path';\nimport type { FileOptions } from './file.ts';\n\n/**\n * Interface for custom schema loaders.\n */\n// biome-ignore lint/suspicious/noExplicitAny: We don't want to import graphql for this type\nexport interface Loader<TOptions = any> {\n\t// biome-ignore lint/suspicious/noExplicitAny: Same reason as above\n\tload(pointer: string, options?: TOptions): Promise<any[] | null | never>;\n\t// biome-ignore lint/suspicious/noExplicitAny: Same reason as above\n\tloadSync?(pointer: string, options?: TOptions): any[] | null | never;\n}\n\n/**\n * Options for the Baeta Generator.\n */\nexport interface GeneratorOptions {\n\t/**\n\t * Current working directory for resolving relative paths.\n\t * @defaultValue process.cwd()\n\t */\n\tcwd?: string;\n\n\t/**\n\t * Glob pattern(s) to locate GraphQL schema files.\n\t * @defaultValue ```ts\n\t * ['src/∗∗/∗.gql', 'src/∗∗/∗.graphql']\n\t * ```\n\t */\n\tschemas: string[];\n\n\t/**\n\t * Root directory where GraphQL modules are defined.\n\t * @defaultValue 'src/modules'\n\t */\n\tmodulesDir?: string;\n\n\t/**\n\t * Filename for the generated module definition file.\n\t * Contains type definitions and the GraphQL AST.\n\t * @defaultValue 'typedef.ts'\n\t */\n\tmoduleDefinitionName?: string;\n\n\t/**\n\t * Output path for the generated base types file.\n\t * @defaultValue ```ts\n\t * `${modulesDir}/../__generated__/types.ts`\n\t * ```\n\t */\n\tbaseTypesPath?: string;\n\n\t/**\n\t * Path to the context type definition.\n\t * Supports both named and default exports.\n\t * @example contextType: 'src/types/context.ts#Context' // for named export\n\t * @example contextType: 'src/types/context.ts' // for default export\n\t * @defaultValue undefined\n\t */\n\tcontextType?: string;\n\n\t/**\n\t * Path to Baeta Extensions (ex. auth-extension).\n\t * Only default export is supported.\n\t * @example extensions: 'src/extensions.ts'\n\t * @defaultValue undefined\n\t */\n\textensions?: string;\n\n\t/**\n\t * Custom scalar type mappings.\n\t * Maps GraphQL scalar types to TypeScript types.\n\t * Supports global types and imports.\n\t * @example { DateTime: 'Date', JSON: 'Record<string, unknown>' }\t * @defaultValue undefined\n\t */\n\tscalars?: Record<string, string | { input: string; output: string }>;\n\n\t/**\n\t * Configuration options for generated files.\n\t */\n\tfileOptions?: FileOptions;\n\n\t/**\n\t * Custom schema loaders for processing schema files.\n\t */\n\tloaders?: Loader[];\n\n\t/**\n\t * File extension to use in generated import statements.\n\t * Set to false to omit extensions.\n\t * @defaultValue '.ts'\n\t */\n\timportExtension?: '.js' | '.ts' | false;\n}\n\nexport interface NormalizedGeneratorOptions {\n\tcwd: string;\n\tschemas: string[];\n\tmodulesDir: string;\n\tmoduleDefinitionName: string;\n\tbaseTypesPath: string;\n\tcontextType?: string;\n\textensions?: string;\n\tscalars?: Record<string, string | { input: string; output: string }>;\n\tfileOptions?: FileOptions;\n\tloaders?: Loader[];\n\timportExtension?: '.js' | '.ts';\n}\n\nexport function loadOptions(options: GeneratorOptions): NormalizedGeneratorOptions {\n\tconst cwd = posixPath(options.cwd ?? process.cwd());\n\tconst schemas = options.schemas ?? ['src/**/*.graphql'];\n\tconst modulesDir = posixPath(resolve(cwd, options.modulesDir || 'src/modules'));\n\tconst moduleDefinitionName = options.moduleDefinitionName || 'typedef.ts';\n\n\tconst defaultBaseTypesRoot = resolve(modulesDir, '../__generated__/types.ts');\n\tconst baseTypesRoot = resolve(cwd, options.baseTypesPath || defaultBaseTypesRoot);\n\tconst baseTypesPath = posixPath(relative(modulesDir, baseTypesRoot));\n\n\tconst contextType =\n\t\toptions.contextType && resolvePotentialImport(cwd, baseTypesRoot, options.contextType);\n\tconst extensions = resolveExtensionPath(modulesDir, moduleDefinitionName, options.extensions);\n\n\tconst scalars = resolveScalars(cwd, baseTypesRoot, options.scalars);\n\n\treturn {\n\t\tcwd,\n\t\tschemas,\n\t\tmodulesDir,\n\t\tmoduleDefinitionName,\n\t\tbaseTypesPath,\n\t\tcontextType,\n\t\textensions,\n\t\tscalars,\n\t\tfileOptions: options.fileOptions,\n\t\tloaders: options.loaders,\n\t\timportExtension:\n\t\t\toptions.importExtension === false ? undefined : (options.importExtension ?? '.ts'),\n\t};\n}\n\nfunction resolvePotentialImport(root: string, baseTypesRoot: string, path: string) {\n\tif (!path.includes('#')) {\n\t\treturn path;\n\t}\n\n\tif (isAbsolute(path) || path.startsWith('@')) {\n\t\treturn path;\n\t}\n\n\tif (path[0] === '!') {\n\t\treturn path.slice(1);\n\t}\n\n\tconst contextTypeRoot = resolve(root, path);\n\treturn posixPath(relative(join(baseTypesRoot, '../'), contextTypeRoot));\n}\n\nfunction resolveScalars(\n\troot: string,\n\tbaseTypesRoot: string,\n\tscalars?: Record<string, string | { input: string; output: string }>,\n) {\n\tif (!scalars) {\n\t\treturn;\n\t}\n\n\tconst resolved: Record<string, string | { input: string; output: string }> = {};\n\n\tfor (const key in scalars) {\n\t\tconst value = scalars[key];\n\n\t\tif (typeof value === 'string') {\n\t\t\tresolved[key] = resolvePotentialImport(root, baseTypesRoot, value);\n\t\t} else {\n\t\t\tresolved[key] = {\n\t\t\t\tinput: resolvePotentialImport(root, baseTypesRoot, value.input),\n\t\t\t\toutput: resolvePotentialImport(root, baseTypesRoot, value.output),\n\t\t\t};\n\t\t}\n\t}\n\n\treturn resolved;\n}\n\nfunction resolveExtensionPath(\n\tmodulesDir: string,\n\tmoduleDefinitionName: string,\n\textensionsPath?: string,\n) {\n\tif (!extensionsPath) {\n\t\treturn;\n\t}\n\n\tif (isAbsolute(extensionsPath)) {\n\t\treturn extensionsPath;\n\t}\n\n\tif (extensionsPath[0] === '!') {\n\t\treturn extensionsPath.slice(1);\n\t}\n\n\treturn posixPath(relative(join(modulesDir, moduleDefinitionName), extensionsPath));\n}\n","import fs from 'node:fs/promises';\nimport { dirname, extname } from '@baeta/util-path';\n\n/**\n * Options for generated files.\n */\nexport interface FileOptions {\n\t/**\n\t * Disable generation notice at the beginning of the file.\n\t * @defaultValue false\n\t */\n\tdisableGenerationNoticeHeader?: boolean;\n\n\t/**\n\t * Disable eslint-disable comment at the beginning of the file.\n\t * @defaultValue false\n\t */\n\tdisableEslintHeader?: boolean;\n\n\t/**\n\t * Disable biome comment at the beginning of the file.\n\t * @defaultValue false\n\t */\n\tdisableBiomeHeader?: boolean;\n\n\t/**\n\t * Add custom header at the beginning of the file.\n\t */\n\taddHeader?: (name: string, content: string, tag: string) => string;\n\n\t/**\n\t * Edit the content of the file before writing it.\n\t */\n\ttransformContent?: (name: string, content: string, tag: string) => string | Promise<string>;\n}\n\nexport class File {\n\tpersisted = false;\n\n\tconstructor(\n\t\tpublic filename: string,\n\t\tpublic content: string,\n\t\tpublic tag: string,\n\t\tprivate options?: FileOptions,\n\t) {}\n\n\twrite = async () => {\n\t\tif (this.persisted) {\n\t\t\treturn;\n\t\t}\n\t\tthis.persisted = true;\n\n\t\tconst dir = dirname(this.filename);\n\t\tawait fs.mkdir(dir, { recursive: true });\n\n\t\tconst content = await this.buildContent();\n\n\t\treturn fs.writeFile(this.filename, content, 'utf-8');\n\t};\n\n\tunlink = async () => {\n\t\tthis.persisted = false;\n\t\treturn fs.unlink(this.filename);\n\t};\n\n\tprotected async buildContent() {\n\t\tconst content = this.buildHeader() + this.content;\n\n\t\tif (this.options?.transformContent) {\n\t\t\treturn this.options.transformContent(this.filename, content, this.tag);\n\t\t}\n\n\t\treturn content;\n\t}\n\n\tprotected buildHeader() {\n\t\tconst headerItems: string[] = [];\n\n\t\tif (this.options?.disableGenerationNoticeHeader !== true) {\n\t\t\tconst comment = this.createComment(\n\t\t\t\t'This file was generated by Baeta. Do not edit it directly. All changes will be overwritten by the generator.',\n\t\t\t);\n\t\t\theaderItems.push(comment);\n\t\t}\n\n\t\tif (this.options?.disableEslintHeader !== true) {\n\t\t\tconst comment = this.createComment('eslint-disable');\n\t\t\theaderItems.push(comment);\n\t\t}\n\n\t\tif (this.options?.disableBiomeHeader !== true) {\n\t\t\tconst comment = this.createComment('@biome-ignore-all: generated file');\n\t\t\theaderItems.push(comment);\n\t\t}\n\n\t\tif (this.options?.addHeader) {\n\t\t\tconst customHeader = this.options.addHeader(this.filename, this.content, this.tag);\n\t\t\theaderItems.push(customHeader);\n\t\t}\n\n\t\tif (headerItems.length === 0) {\n\t\t\treturn '';\n\t\t}\n\n\t\treturn `${headerItems.join('\\n')}\\n\\n`;\n\t}\n\n\tprotected createComment(comment: string) {\n\t\tconst extension = extname(this.filename);\n\n\t\tif (['.gql', '.graphql'].includes(extension)) {\n\t\t\treturn `# ${comment}`;\n\t\t}\n\n\t\treturn `/* ${comment} */`;\n\t}\n}\n","import { mkdir, open, writeFile } from 'node:fs/promises';\nimport { dirname } from '@baeta/util-path';\nimport { File, type FileOptions } from './file.ts';\n\nexport class FileBlock extends File {\n\tconstructor(\n\t\tpublic filename: string,\n\t\tpublic content: string,\n\t\tpublic start: string,\n\t\tpublic end: string,\n\t\tpublic tag: string,\n\t\toptions?: FileOptions,\n\t) {\n\t\tsuper(filename, content, tag, {\n\t\t\tdisableBiomeHeader: options?.disableBiomeHeader ?? true,\n\t\t\tdisableEslintHeader: options?.disableEslintHeader ?? true,\n\t\t\tdisableGenerationNoticeHeader: options?.disableGenerationNoticeHeader ?? true,\n\t\t});\n\t}\n\n\twrite = async () => {\n\t\tif (this.persisted) {\n\t\t\treturn;\n\t\t}\n\t\tthis.persisted = true;\n\n\t\tconst dir = dirname(this.filename);\n\t\tawait mkdir(dir, { recursive: true });\n\n\t\tconst [existingContent, fd] = await this.getExistingContent();\n\n\t\tthis.content = this.addBlockToContent(existingContent);\n\t\tconst content = await this.buildContent();\n\n\t\tif (fd) {\n\t\t\tawait fd.truncate(0);\n\t\t\tawait fd.write(content, 0, 'utf-8');\n\t\t\tawait fd.close();\n\t\t} else {\n\t\t\tawait writeFile(this.filename, content, 'utf-8');\n\t\t}\n\t};\n\n\tunlink = async () => {\n\t\tthis.persisted = false;\n\n\t\tconst [existingContent, fd] = await this.getExistingContent();\n\n\t\tif (fd) {\n\t\t\tconst [start, end] = this.getSlices(existingContent);\n\t\t\tawait fd.truncate(0);\n\t\t\tawait fd.write(start + end, 0, 'utf-8');\n\t\t\tawait fd.close();\n\t\t}\n\t};\n\n\tprotected async getExistingContent() {\n\t\ttry {\n\t\t\tconst fd = await open(this.filename, 'r+');\n\t\t\tconst existingContent = await fd.readFile('utf-8');\n\t\t\treturn [existingContent, fd] as const;\n\t\t} catch {\n\t\t\treturn ['', null] as const;\n\t\t}\n\t}\n\n\tprotected getSlices(existingContent: string) {\n\t\tconst startMarkerIndex = existingContent.indexOf(this.start);\n\t\tconst endMarkerIndex = existingContent.lastIndexOf(this.end);\n\n\t\tif (startMarkerIndex === -1 || endMarkerIndex === -1) {\n\t\t\treturn [existingContent, '', false] as const;\n\t\t}\n\n\t\treturn [\n\t\t\texistingContent.slice(0, startMarkerIndex),\n\t\t\texistingContent.slice(endMarkerIndex + this.end.length),\n\t\t\ttrue,\n\t\t] as const;\n\t}\n\n\tprotected addBlockToContent(existingContent: string) {\n\t\tconst block = `${this.start}\\n${this.content}\\n${this.end}`;\n\t\tconst [startSlice, endSlice, hasMarkers] = this.getSlices(existingContent);\n\t\tconst padding = hasMarkers ? '' : this.buildPadding(existingContent);\n\t\treturn startSlice + padding + block + endSlice;\n\t}\n\n\tprotected buildPadding(existingContent: string) {\n\t\tif (existingContent === '') {\n\t\t\treturn '';\n\t\t}\n\n\t\tif (existingContent.endsWith('\\n\\n')) {\n\t\t\treturn '';\n\t\t}\n\n\t\tif (existingContent.endsWith('\\n')) {\n\t\t\treturn '\\n';\n\t\t}\n\n\t\treturn '\\n\\n';\n\t}\n}\n","import { File, type FileOptions } from './file.ts';\n\nexport class FileManager {\n\tfiles: File[] = [];\n\n\tconstructor(public fileOptions?: FileOptions) {}\n\n\tcreateAndAdd(filename: string, content: string, tag: string) {\n\t\tconst file = new File(filename, content, tag, this.fileOptions);\n\t\tthis.add(file);\n\t\treturn file;\n\t}\n\n\tadd(...file: File[]) {\n\t\tthis.files.push(...file);\n\t}\n\n\tget(filename: string) {\n\t\treturn this.files.find((file) => file.filename === filename);\n\t}\n\n\tgetAll() {\n\t\treturn this.files;\n\t}\n\n\tgetByTag(tag: string) {\n\t\treturn this.files.filter((file) => file.tag === tag);\n\t}\n\n\tremove(filename: string) {\n\t\tconst index = this.files.findIndex((file) => file.filename === filename);\n\t\tthis.files.splice(index, 1);\n\t}\n\n\tremoveAll() {\n\t\tthis.files = [];\n\t}\n\n\tremoveByTag(tag: string) {\n\t\tthis.files = this.files.filter((file) => file.tag !== tag);\n\t}\n\n\twriteAll() {\n\t\tconst toWrite = this.files.filter((file) => !file.persisted);\n\t\treturn Promise.all(toWrite.map((file) => file.write()));\n\t}\n\n\twriteByTag(tag: string) {\n\t\tconst files = this.getByTag(tag);\n\t\tconst toWrite = files.filter((file) => !file.persisted);\n\t\treturn Promise.all(toWrite.map((file) => file.write()));\n\t}\n\n\tunlinkAll() {\n\t\treturn Promise.all(this.files.map((file) => file.unlink())).then(() => {\n\t\t\t// void\n\t\t});\n\t}\n\n\tgetPersistedFiles() {\n\t\treturn this.files.filter((file) => file.persisted);\n\t}\n}\n","import { camelCase, pascalCase } from 'change-case-all';\n\nexport function getModuleGetName(name: string) {\n\treturn `get${pascalCase(name)}Module`;\n}\n\nexport function getModuleCreateName(name: string) {\n\treturn `create${pascalCase(name)}Module`;\n}\n\nexport function getModuleVariableName(name: string) {\n\treturn camelCase(`${name}Module`);\n}\n","import { PluginType } from '@baeta/plugin';\nimport type { NormalizedGeneratorOptions } from './config.ts';\nimport type { Ctx } from './ctx.ts';\nimport type { Watcher, WatcherFile } from './watcher.ts';\n\nexport enum GeneratorPluginVersion {\n\tV1 = 'v1',\n}\n\nexport type GeneratorPluginV1Fn<Store = unknown> = (\n\tctx: Ctx<Store>,\n\tnext: () => Promise<void>,\n) => Promise<void>;\n\nexport type GeneratorPluginV1ReloadFn = (file: WatcherFile) => void;\n\nexport type GeneratorPluginV1WatchOptions = (\n\toptions: NormalizedGeneratorOptions,\n\twatcher: Watcher,\n\treload: GeneratorPluginV1ReloadFn,\n) => void;\n\nexport type GeneratorPluginV1Factory<Store = unknown> = {\n\tname: string;\n\tactionName: string;\n\tsetup?: GeneratorPluginV1Fn<Store>;\n\tgenerate?: GeneratorPluginV1Fn<Store>;\n\tend?: GeneratorPluginV1Fn<Store>;\n\twatch?: GeneratorPluginV1WatchOptions;\n};\n\nexport interface GeneratorPluginV1<Store = unknown> {\n\tname: string;\n\tactionName: string;\n\tversion: GeneratorPluginVersion.V1;\n\ttype: PluginType.Generator;\n\tsetup: GeneratorPluginV1Fn<Store>;\n\tgenerate: GeneratorPluginV1Fn<Store>;\n\tend: GeneratorPluginV1Fn<Store>;\n\twatch: GeneratorPluginV1WatchOptions;\n}\n\nconst defaultPluginFn: GeneratorPluginV1Fn<unknown> = async (_ctx, next) => {\n\treturn next();\n};\n\nconst defaultWatchFn = () => ({ include: [], ignore: [] });\n\nexport function createPluginV1<Store = unknown>(\n\toptions: GeneratorPluginV1Factory<Store>,\n): GeneratorPluginV1<Store> {\n\treturn {\n\t\tname: options.name,\n\t\tactionName: options.actionName,\n\t\tversion: GeneratorPluginVersion.V1,\n\t\ttype: PluginType.Generator,\n\t\tend: options.end ?? defaultPluginFn,\n\t\tgenerate: options.generate ?? defaultPluginFn,\n\t\tsetup: options.setup ?? defaultPluginFn,\n\t\twatch: options.watch ?? defaultWatchFn,\n\t};\n}\n\nexport function isGeneratorPlugin(plugin: {\n\ttype: PluginType;\n}): plugin is GeneratorPluginV1<unknown> {\n\treturn plugin.type === PluginType.Generator;\n}\n\nexport function getGeneratorPlugins(plugins?: Array<{ type: PluginType }>) {\n\tif (!plugins) {\n\t\treturn [];\n\t}\n\treturn plugins.filter(isGeneratorPlugin);\n}\n","import path, { posixPath } from '@baeta/util-path';\nimport {\n\ttype AsyncSubscription,\n\ttype Event,\n\ttype EventType,\n\ttype Options,\n\tsubscribe,\n} from '@parcel/watcher';\nimport micromatch from 'micromatch';\nimport { type MatchPattern, WatcherIgnore } from './watcher-ignore.ts';\n\nexport { micromatch };\nexport const isMatch = micromatch.isMatch;\n\nexport type WatcherListener = (path: WatcherFile) => void;\n\nexport interface WatcherFile {\n\ttype: EventType;\n\tpath: string;\n\trelativePath: string;\n}\nexport class Watcher {\n\tprivate subscription: AsyncSubscription;\n\n\tprivate listeners: Record<EventType, WatcherListener[]> = {\n\t\tcreate: [],\n\t\tupdate: [],\n\t\tdelete: [],\n\t};\n\n\tprivate watcherIgnore: WatcherIgnore;\n\n\tconstructor(\n\t\tprivate readonly cwd: string,\n\t\tprivate readonly options?: Options,\n\t) {\n\t\tthis.watcherIgnore = new WatcherIgnore(cwd);\n\t\tthis.subscription = this.createSubscription();\n\t}\n\n\tonEvents = (err: Error | null, events: Event[]) => {\n\t\tif (err) {\n\t\t\tconsole.error(err);\n\t\t\treturn;\n\t\t}\n\n\t\tconst filteredEvents = events.filter((event) => {\n\t\t\treturn !this.watcherIgnore.isIgnored(posixPath(event.path));\n\t\t});\n\n\t\tfor (const event of filteredEvents) {\n\t\t\tfor (const listener of this.listeners[event.type]) {\n\t\t\t\tlistener({\n\t\t\t\t\ttype: event.type,\n\t\t\t\t\tpath: posixPath(event.path),\n\t\t\t\t\trelativePath: posixPath(path.relative(this.cwd, event.path)),\n\t\t\t\t});\n\t\t\t}\n\t\t}\n\t};\n\n\ton(event: EventType, listener: WatcherListener) {\n\t\tthis.listeners[event].push(listener);\n\t}\n\n\toff(event: EventType, listener: WatcherListener) {\n\t\tthis.listeners[event] = this.listeners[event].filter((l) => l !== listener);\n\t}\n\n\tignore(pattern: MatchPattern) {\n\t\tthis.watcherIgnore.ignore(pattern);\n\t}\n\n\tunignore(pattern: MatchPattern) {\n\t\tthis.watcherIgnore.unignore(pattern);\n\t}\n\n\tcreateSubscription() {\n\t\tconst promise = subscribe(this.cwd, this.onEvents, this.options);\n\n\t\tconst unsubscribe = async () => {\n\t\t\tconst subscription = await promise;\n\t\t\tawait subscription.unsubscribe();\n\t\t};\n\n\t\treturn {\n\t\t\tunsubscribe,\n\t\t};\n\t}\n\n\tclose() {\n\t\treturn this.subscription.unsubscribe();\n\t}\n}\n","import path from '@baeta/util-path';\nimport micromatch from 'micromatch';\n\nexport type MatchFn = (testString: string) => boolean;\nexport type MatchPattern = string | RegExp | MatchFn;\n\nexport class WatcherIgnore {\n\tprivate files: string[] = [];\n\tprivate regexps: RegExp[] = [];\n\tprivate functions: MatchFn[] = [];\n\n\tprivate globs: MatchFn[] = [];\n\tprivate globsMap = new Map<string, MatchFn>();\n\n\tconstructor(private readonly cwd: string) {}\n\n\tignore(pattern: MatchPattern) {\n\t\tif (pattern instanceof RegExp) {\n\t\t\tthis.regexps.push(pattern);\n\t\t\treturn;\n\t\t}\n\n\t\tif (typeof pattern === 'function') {\n\t\t\tthis.functions.push(pattern);\n\t\t\treturn;\n\t\t}\n\n\t\tif (!this.isMicromatch(pattern)) {\n\t\t\tthis.files.push(this.resolveFile(pattern));\n\t\t\treturn;\n\t\t}\n\n\t\tthis.globsMap.set(pattern, micromatch.matcher(pattern));\n\t\tthis.globs = Array.from(this.globsMap.values());\n\t}\n\n\tisMicromatch(pattern: string) {\n\t\tconst result = micromatch.scan(pattern);\n\t\treturn result.isBrace || result.isGlobstar || result.isExtglob || result.isGlob;\n\t}\n\n\tresolveFile(file: string) {\n\t\treturn path.isAbsolute(file) ? file : path.join(this.cwd, file);\n\t}\n\n\tunignore(pattern: MatchPattern) {\n\t\tif (pattern instanceof RegExp) {\n\t\t\tthis.regexps = this.regexps.filter((p) => p !== pattern);\n\t\t\treturn;\n\t\t}\n\n\t\tif (typeof pattern === 'function') {\n\t\t\tthis.functions = this.functions.filter((p) => p !== pattern);\n\t\t\treturn;\n\t\t}\n\n\t\tif (!this.isMicromatch(pattern)) {\n\t\t\tconst file = this.resolveFile(pattern);\n\t\t\tthis.files = this.files.filter((p) => p !== file);\n\t\t\treturn;\n\t\t}\n\n\t\tthis.globsMap.delete(pattern);\n\t\tthis.globs = Array.from(this.globsMap.values());\n\t}\n\n\tisIgnored(path: string) {\n\t\tif (this.files.includes(path)) {\n\t\t\treturn true;\n\t\t}\n\n\t\tif (this.globs.some((f) => f(path))) {\n\t\t\treturn true;\n\t\t}\n\n\t\tif (this.regexps.some((r) => r.test(path))) {\n\t\t\treturn true;\n\t\t}\n\n\t\tif (this.functions.some((f) => f(path))) {\n\t\t\treturn true;\n\t\t}\n\n\t\treturn false;\n\t}\n}\n"],"mappings":"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","names":["path","dirname","dirname","GeneratorPluginVersion","path","posixPath","micromatch","path","micromatch","posixPath","path"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@baeta/generator-sdk",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"baeta",
|
|
6
6
|
"graphql",
|
|
@@ -43,8 +43,8 @@
|
|
|
43
43
|
"types": "tsc --noEmit"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@baeta/plugin": "^1.0.
|
|
47
|
-
"@baeta/util-path": "^1.0.
|
|
46
|
+
"@baeta/plugin": "^1.0.2",
|
|
47
|
+
"@baeta/util-path": "^1.0.2",
|
|
48
48
|
"@parcel/watcher": "^2.5.1",
|
|
49
49
|
"change-case-all": "2.1.0",
|
|
50
50
|
"micromatch": "^4.0.8"
|
|
@@ -53,8 +53,8 @@
|
|
|
53
53
|
"@baeta/builder": "^0.0.0",
|
|
54
54
|
"@baeta/tsconfig": "^0.0.0",
|
|
55
55
|
"@types/micromatch": "^4.0.9",
|
|
56
|
-
"@types/node": "^22.
|
|
57
|
-
"typescript": "^5.8.
|
|
56
|
+
"@types/node": "^22.15.30",
|
|
57
|
+
"typescript": "^5.8.3"
|
|
58
58
|
},
|
|
59
59
|
"engines": {
|
|
60
60
|
"node": ">=22.12.0"
|
|
@@ -68,15 +68,6 @@
|
|
|
68
68
|
}
|
|
69
69
|
}
|
|
70
70
|
},
|
|
71
|
-
"ava": {
|
|
72
|
-
"extensions": {
|
|
73
|
-
"ts": "module"
|
|
74
|
-
},
|
|
75
|
-
"nodeArguments": [
|
|
76
|
-
"--no-warnings",
|
|
77
|
-
"--experimental-transform-types"
|
|
78
|
-
]
|
|
79
|
-
},
|
|
80
71
|
"typedocOptions": {
|
|
81
72
|
"entryPoints": [
|
|
82
73
|
"./index.ts"
|