@supacloud/compiler 0.3.1 → 0.4.1
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/analyze.d.ts +3 -3
- package/dist/cli.js +1698 -0
- package/dist/compile.d.ts +8 -3
- package/dist/generate.d.ts +8 -2
- package/dist/index.d.ts +5 -4
- package/dist/index.js +377 -7
- package/dist/profiles.d.ts +36 -0
- package/dist/types.d.ts +79 -25
- package/dist/util.d.ts +7 -7
- package/dist/validate.d.ts +4 -7
- package/package.json +5 -2
package/dist/analyze.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { ApplicationGraph } from "./types";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
4
|
-
*
|
|
5
|
-
*
|
|
3
|
+
* Analyzes source code under rootDir (via ts-morph AST, without typecheck dependency) to build ApplicationGraph.
|
|
4
|
+
* Decorators are matched by name only (Module/Injectable/Inject/Command/Query/Controller/Get/...),
|
|
5
|
+
* without checking import origins, so this package does not need to depend on @supacloud/app.
|
|
6
6
|
*/
|
|
7
7
|
export declare function analyzeProject(rootDir: string, include?: string[]): Promise<ApplicationGraph>;
|