We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b0b06c commit fc62db5Copy full SHA for fc62db5
generator/cmd/generateall.ts
@@ -57,7 +57,9 @@ executeSynchronous(async () => {
57
const errors = [];
58
const packages: Package[] = [];
59
for (const autogenlistConfig of filteredAutogenlist) {
60
- let pkg = {} as Package;
+ let pkg = {
61
+ path: ['schemas']
62
+ } as Package;
63
try {
64
const readme = await validateAndReturnReadmePath(localPath, autogenlistConfig.readmeFile || autogenlistConfig.basePath);
65
pkg.packageName = getPackageString(readme);
generator/models.ts
@@ -28,5 +28,6 @@ export interface SchemaPostProcessor {
28
29
export interface Package {
30
packageName?: string,
31
+ path: string[],
32
result: 'succeeded' | 'failed' | 'warning'
33
}
0 commit comments