Skip to content

Commit

Permalink
Add progress messages to edgeql-js
Browse files Browse the repository at this point in the history
  • Loading branch information
scotttrinh committed Oct 10, 2023
1 parent 550544d commit f3d40a4
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions packages/generate/src/edgeql-js.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,13 +122,21 @@ export async function generateQueryBuilder(params: {
operators,
edgedbVersion: version,
};
console.log("Generating runtime spec...");
generateRuntimeSpec(generatorParams);
console.log("Generating cast maps...");
generateCastMaps(generatorParams);
console.log("Generating scalars...");
generateScalars(generatorParams);
console.log("Generating object types...");
generateObjectTypes(generatorParams);
console.log("Generating function types...");
generateFunctionTypes(generatorParams);
console.log("Generating operators...");
generateOperators(generatorParams);
console.log("Generating set impl...");
generateSetImpl(generatorParams);
console.log("Generating globals...");
generateGlobals(generatorParams);

// TODO: Fix 'fts' module generation properly, for now we just disable
Expand Down

0 comments on commit f3d40a4

Please sign in to comment.