@analogjs/vite-plugin-angular 3.0.0-alpha.4 → 3.0.0-alpha.41

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.
Files changed (168) hide show
  1. package/README.md +28 -0
  2. package/migrations/migrate-setup-vitest/migrate-setup-vitest.d.ts +2 -0
  3. package/migrations/migrate-setup-vitest/migrate-setup-vitest.js +49 -0
  4. package/migrations/migrate-setup-vitest/migrate-setup-vitest.js.map +1 -0
  5. package/migrations/migration.json +7 -1
  6. package/migrations/migrations.json +9 -0
  7. package/migrations/update-3-0-0/migrate-setup-vitest.d.ts +2 -0
  8. package/migrations/update-3-0-0/migrate-setup-vitest.js +36 -0
  9. package/migrations/update-3-0-0/migrate-setup-vitest.js.map +1 -0
  10. package/package.json +25 -12
  11. package/src/index.d.ts +3 -2
  12. package/src/index.js +6 -2
  13. package/src/index.js.map +1 -1
  14. package/src/lib/angular-build-optimizer-plugin.d.ts +4 -4
  15. package/src/lib/angular-build-optimizer-plugin.js +48 -62
  16. package/src/lib/angular-build-optimizer-plugin.js.map +1 -1
  17. package/src/lib/angular-jit-plugin.d.ts +3 -3
  18. package/src/lib/angular-jit-plugin.js +42 -37
  19. package/src/lib/angular-jit-plugin.js.map +1 -1
  20. package/src/lib/angular-pending-tasks.plugin.d.ts +7 -7
  21. package/src/lib/angular-pending-tasks.plugin.js +17 -18
  22. package/src/lib/angular-pending-tasks.plugin.js.map +1 -1
  23. package/src/lib/angular-vite-plugin.d.ts +250 -40
  24. package/src/lib/angular-vite-plugin.js +2216 -964
  25. package/src/lib/angular-vite-plugin.js.map +1 -1
  26. package/src/lib/angular-vitest-plugin.d.ts +19 -15
  27. package/src/lib/angular-vitest-plugin.js +99 -114
  28. package/src/lib/angular-vitest-plugin.js.map +1 -1
  29. package/src/lib/compiler/angular-version.d.ts +19 -0
  30. package/src/lib/compiler/angular-version.js +16 -0
  31. package/src/lib/compiler/angular-version.js.map +1 -0
  32. package/src/lib/compiler/class-field-lowering.d.ts +23 -0
  33. package/src/lib/compiler/class-field-lowering.js +131 -0
  34. package/src/lib/compiler/class-field-lowering.js.map +1 -0
  35. package/src/lib/compiler/compile.d.ts +44 -0
  36. package/src/lib/compiler/compile.js +731 -0
  37. package/src/lib/compiler/compile.js.map +1 -0
  38. package/src/lib/compiler/constants.d.ts +18 -0
  39. package/src/lib/compiler/constants.js +52 -0
  40. package/src/lib/compiler/constants.js.map +1 -0
  41. package/src/lib/compiler/debug.d.ts +22 -0
  42. package/src/lib/compiler/debug.js +20 -0
  43. package/src/lib/compiler/debug.js.map +1 -0
  44. package/src/lib/compiler/defer.d.ts +47 -0
  45. package/src/lib/compiler/defer.js +138 -0
  46. package/src/lib/compiler/defer.js.map +1 -0
  47. package/src/lib/compiler/dts-reader.d.ts +35 -0
  48. package/src/lib/compiler/dts-reader.js +365 -0
  49. package/src/lib/compiler/dts-reader.js.map +1 -0
  50. package/src/lib/compiler/hmr.d.ts +16 -0
  51. package/src/lib/compiler/hmr.js +69 -0
  52. package/src/lib/compiler/hmr.js.map +1 -0
  53. package/src/lib/compiler/index.d.ts +7 -0
  54. package/src/lib/compiler/index.js +7 -0
  55. package/src/lib/compiler/jit-metadata.d.ts +14 -0
  56. package/src/lib/compiler/jit-metadata.js +146 -0
  57. package/src/lib/compiler/jit-metadata.js.map +1 -0
  58. package/src/lib/compiler/jit-transform.d.ts +24 -0
  59. package/src/lib/compiler/jit-transform.js +200 -0
  60. package/src/lib/compiler/jit-transform.js.map +1 -0
  61. package/src/lib/compiler/js-emitter.d.ts +10 -0
  62. package/src/lib/compiler/js-emitter.js +420 -0
  63. package/src/lib/compiler/js-emitter.js.map +1 -0
  64. package/src/lib/compiler/metadata.d.ts +45 -0
  65. package/src/lib/compiler/metadata.js +633 -0
  66. package/src/lib/compiler/metadata.js.map +1 -0
  67. package/src/lib/compiler/registry.d.ts +49 -0
  68. package/src/lib/compiler/registry.js +164 -0
  69. package/src/lib/compiler/registry.js.map +1 -0
  70. package/src/lib/compiler/resource-inliner.d.ts +21 -0
  71. package/src/lib/compiler/resource-inliner.js +152 -0
  72. package/src/lib/compiler/resource-inliner.js.map +1 -0
  73. package/src/lib/compiler/style-ast.d.ts +8 -0
  74. package/src/lib/compiler/style-ast.js +54 -0
  75. package/src/lib/compiler/style-ast.js.map +1 -0
  76. package/src/lib/compiler/styles.d.ts +13 -0
  77. package/src/lib/compiler/test-helpers.d.ts +7 -0
  78. package/src/lib/compiler/type-elision.d.ts +26 -0
  79. package/src/lib/compiler/type-elision.js +211 -0
  80. package/src/lib/compiler/type-elision.js.map +1 -0
  81. package/src/lib/compiler/utils.d.ts +10 -0
  82. package/src/lib/compiler/utils.js +35 -0
  83. package/src/lib/compiler/utils.js.map +1 -0
  84. package/src/lib/compiler-plugin.d.ts +11 -11
  85. package/src/lib/compiler-plugin.js +43 -44
  86. package/src/lib/compiler-plugin.js.map +1 -1
  87. package/src/lib/component-resolvers.d.ts +23 -5
  88. package/src/lib/component-resolvers.js +153 -63
  89. package/src/lib/component-resolvers.js.map +1 -1
  90. package/src/lib/fast-compile-plugin.d.ts +14 -0
  91. package/src/lib/fast-compile-plugin.js +270 -0
  92. package/src/lib/fast-compile-plugin.js.map +1 -0
  93. package/src/lib/host.d.ts +10 -8
  94. package/src/lib/host.js +113 -101
  95. package/src/lib/host.js.map +1 -1
  96. package/src/lib/live-reload-plugin.d.ts +5 -5
  97. package/src/lib/live-reload-plugin.js +61 -62
  98. package/src/lib/live-reload-plugin.js.map +1 -1
  99. package/src/lib/models.d.ts +9 -9
  100. package/src/lib/nx-folder-plugin.d.ts +5 -5
  101. package/src/lib/nx-folder-plugin.js +18 -16
  102. package/src/lib/nx-folder-plugin.js.map +1 -1
  103. package/src/lib/plugins/file-replacements.plugin.d.ts +4 -4
  104. package/src/lib/plugins/file-replacements.plugin.js +40 -62
  105. package/src/lib/plugins/file-replacements.plugin.js.map +1 -1
  106. package/src/lib/router-plugin.d.ts +1 -1
  107. package/src/lib/router-plugin.js +23 -23
  108. package/src/lib/router-plugin.js.map +1 -1
  109. package/src/lib/style-pipeline.d.ts +15 -0
  110. package/src/lib/style-pipeline.js +31 -0
  111. package/src/lib/style-pipeline.js.map +1 -0
  112. package/src/lib/style-preprocessor.d.ts +35 -0
  113. package/src/lib/style-preprocessor.js +35 -0
  114. package/src/lib/style-preprocessor.js.map +1 -0
  115. package/src/lib/stylesheet-registry.d.ts +73 -0
  116. package/src/lib/stylesheet-registry.js +168 -0
  117. package/src/lib/stylesheet-registry.js.map +1 -0
  118. package/src/lib/tools/package.json +2 -7
  119. package/src/lib/tools/src/builders/vite/vite-build.impl.js +31 -38
  120. package/src/lib/tools/src/builders/vite/vite-build.impl.js.map +1 -1
  121. package/src/lib/tools/src/builders/vite-dev-server/dev-server.impl.js +51 -62
  122. package/src/lib/tools/src/builders/vite-dev-server/dev-server.impl.js.map +1 -1
  123. package/src/lib/tools/src/index.js +0 -2
  124. package/src/lib/utils/compiler-plugin-options.d.ts +11 -11
  125. package/src/lib/utils/debug-harness.d.ts +23 -0
  126. package/src/lib/utils/debug-harness.js +88 -0
  127. package/src/lib/utils/debug-harness.js.map +1 -0
  128. package/src/lib/utils/debug-log-file.d.ts +5 -0
  129. package/src/lib/utils/debug-log-file.js +56 -0
  130. package/src/lib/utils/debug-log-file.js.map +1 -0
  131. package/src/lib/utils/debug.d.ts +28 -0
  132. package/src/lib/utils/debug.js +39 -0
  133. package/src/lib/utils/debug.js.map +1 -0
  134. package/src/lib/utils/devkit.d.ts +6 -6
  135. package/src/lib/utils/devkit.js +34 -38
  136. package/src/lib/utils/devkit.js.map +1 -1
  137. package/src/lib/utils/hmr-candidates.d.ts +28 -28
  138. package/src/lib/utils/plugin-config.d.ts +30 -0
  139. package/src/lib/utils/plugin-config.js +64 -0
  140. package/src/lib/utils/plugin-config.js.map +1 -0
  141. package/src/lib/utils/rolldown.d.ts +2 -0
  142. package/src/lib/utils/rolldown.js +12 -0
  143. package/src/lib/utils/rolldown.js.map +1 -0
  144. package/src/lib/utils/source-file-cache.d.ts +8 -15
  145. package/src/lib/utils/source-file-cache.js +35 -37
  146. package/src/lib/utils/source-file-cache.js.map +1 -1
  147. package/src/lib/utils/tailwind-reference.d.ts +12 -0
  148. package/src/lib/utils/tailwind-reference.js +99 -0
  149. package/src/lib/utils/tailwind-reference.js.map +1 -0
  150. package/src/lib/utils/virtual-ids.d.ts +8 -0
  151. package/src/lib/utils/virtual-ids.js +35 -0
  152. package/src/lib/utils/virtual-ids.js.map +1 -0
  153. package/src/lib/utils/virtual-resources.d.ts +47 -0
  154. package/src/lib/utils/virtual-resources.js +89 -0
  155. package/src/lib/utils/virtual-resources.js.map +1 -0
  156. package/src/test-setup.d.ts +2 -0
  157. package/setup-vitest.d.ts +0 -4
  158. package/setup-vitest.js +0 -215
  159. package/setup-vitest.js.map +0 -1
  160. package/src/lib/models.js +0 -1
  161. package/src/lib/models.js.map +0 -1
  162. package/src/lib/tools/README.md +0 -3
  163. package/src/lib/tools/src/index.d.ts +0 -0
  164. package/src/lib/tools/src/index.js.map +0 -1
  165. package/src/lib/utils/compiler-plugin-options.js +0 -1
  166. package/src/lib/utils/compiler-plugin-options.js.map +0 -1
  167. package/src/lib/utils/hmr-candidates.js +0 -272
  168. package/src/lib/utils/hmr-candidates.js.map +0 -1
@@ -0,0 +1,47 @@
1
+ import { type ResolvedConfig } from "vite";
2
+ interface PluginContextLike {
3
+ addWatchFile(path: string): void;
4
+ }
5
+ /**
6
+ * True when the given stylesheet should be run through Vite's `preprocessCSS`,
7
+ * given Vitest's `test.css` semantics:
8
+ *
9
+ * - non-test contexts → always preprocess
10
+ * - `test.css: true` → always preprocess
11
+ * - `test.css: false` → never preprocess
12
+ * - `test.css: { include }` → preprocess only when `filePath` matches an
13
+ * include pattern and isn't excluded
14
+ * - `test.css` unset → Vitest defaults to `include: []`, so nothing
15
+ * matches and we don't preprocess
16
+ *
17
+ * Used to gate `preprocessCSS` calls in test mode so we don't surface SCSS
18
+ * deprecation noise or pay preprocessing cost the user didn't ask for. (#2297)
19
+ */
20
+ export declare function shouldPreprocessTestCss(config: ResolvedConfig | undefined, filePath?: string): boolean;
21
+ /**
22
+ * Rewrite a user `.html?raw` import to a virtual raw id. Returns undefined
23
+ * when the id doesn't match, so callers can fall through to the next check.
24
+ *
25
+ * Routed through a virtual id (rather than `?analog-raw`) so the path Vite
26
+ * sees has no file extension — keeps vite:asset / vite:css from re-tagging
27
+ * the id before our load hook runs.
28
+ */
29
+ export declare function rewriteHtmlRawImport(id: string, importer: string | undefined): string | undefined;
30
+ /**
31
+ * Rewrite a user `.scss?inline` / `.css?inline` / … import to a virtual
32
+ * style id. Returns undefined when the id doesn't match.
33
+ */
34
+ export declare function rewriteInlineStyleImport(id: string, importer: string | undefined): string | undefined;
35
+ /**
36
+ * Load a virtual raw module: reads the backing file, registers it for HMR
37
+ * watching, and returns its content as a default-exported string. Returns
38
+ * undefined when the id is not a virtual raw id.
39
+ */
40
+ export declare function loadVirtualRawModule(ctx: PluginContextLike, id: string): Promise<string | undefined>;
41
+ /**
42
+ * Load a virtual style module: reads the backing stylesheet, runs it through
43
+ * Vite's CSS preprocessor, and returns the result as a default-exported
44
+ * string. Returns undefined when the id is not a virtual style id.
45
+ */
46
+ export declare function loadVirtualStyleModule(ctx: PluginContextLike, id: string, resolvedConfig: ResolvedConfig): Promise<string | undefined>;
47
+ export {};
@@ -0,0 +1,89 @@
1
+ import { fromVirtualRawId, fromVirtualStyleId, isVirtualRawId, isVirtualStyleId, toVirtualRawId, toVirtualStyleId } from "./virtual-ids.js";
2
+ import { promises } from "node:fs";
3
+ import { dirname, isAbsolute, resolve } from "node:path";
4
+ import { normalizePath, preprocessCSS } from "vite";
5
+ //#region packages/vite-plugin-angular/src/lib/utils/virtual-resources.ts
6
+ var INLINE_STYLE_QUERY_RE = /\.(css|scss|sass|less)\?inline$/;
7
+ /**
8
+ * True when the given stylesheet should be run through Vite's `preprocessCSS`,
9
+ * given Vitest's `test.css` semantics:
10
+ *
11
+ * - non-test contexts → always preprocess
12
+ * - `test.css: true` → always preprocess
13
+ * - `test.css: false` → never preprocess
14
+ * - `test.css: { include }` → preprocess only when `filePath` matches an
15
+ * include pattern and isn't excluded
16
+ * - `test.css` unset → Vitest defaults to `include: []`, so nothing
17
+ * matches and we don't preprocess
18
+ *
19
+ * Used to gate `preprocessCSS` calls in test mode so we don't surface SCSS
20
+ * deprecation noise or pay preprocessing cost the user didn't ask for. (#2297)
21
+ */
22
+ function shouldPreprocessTestCss(config, filePath) {
23
+ if (!(process.env.NODE_ENV === "test" || !!process.env["VITEST"])) return true;
24
+ const cssOpt = config?.test?.css;
25
+ if (cssOpt === true) return true;
26
+ if (cssOpt === false || cssOpt == null) return false;
27
+ const toArray = (value) => value == null ? [] : Array.isArray(value) ? value : [value];
28
+ const include = toArray(cssOpt.include);
29
+ const exclude = toArray(cssOpt.exclude);
30
+ if (!filePath || include.length === 0) return false;
31
+ const matches = (patterns) => patterns.some((p) => typeof p === "string" ? filePath.includes(p) : p.test(filePath));
32
+ return matches(include) && !matches(exclude);
33
+ }
34
+ function resolveImportPath(id, importer) {
35
+ const filePath = id.split("?")[0];
36
+ return isAbsolute(filePath) ? normalizePath(filePath) : importer ? normalizePath(resolve(dirname(importer), filePath)) : void 0;
37
+ }
38
+ /**
39
+ * Rewrite a user `.html?raw` import to a virtual raw id. Returns undefined
40
+ * when the id doesn't match, so callers can fall through to the next check.
41
+ *
42
+ * Routed through a virtual id (rather than `?analog-raw`) so the path Vite
43
+ * sees has no file extension — keeps vite:asset / vite:css from re-tagging
44
+ * the id before our load hook runs.
45
+ */
46
+ function rewriteHtmlRawImport(id, importer) {
47
+ if (!id.includes(".html?raw")) return void 0;
48
+ const resolved = resolveImportPath(id, importer);
49
+ return resolved ? toVirtualRawId(resolved) : void 0;
50
+ }
51
+ /**
52
+ * Rewrite a user `.scss?inline` / `.css?inline` / … import to a virtual
53
+ * style id. Returns undefined when the id doesn't match.
54
+ */
55
+ function rewriteInlineStyleImport(id, importer) {
56
+ if (!INLINE_STYLE_QUERY_RE.test(id)) return void 0;
57
+ const resolved = resolveImportPath(id, importer);
58
+ return resolved ? toVirtualStyleId(resolved) : void 0;
59
+ }
60
+ /**
61
+ * Load a virtual raw module: reads the backing file, registers it for HMR
62
+ * watching, and returns its content as a default-exported string. Returns
63
+ * undefined when the id is not a virtual raw id.
64
+ */
65
+ async function loadVirtualRawModule(ctx, id) {
66
+ if (!isVirtualRawId(id)) return void 0;
67
+ const filePath = fromVirtualRawId(id);
68
+ ctx.addWatchFile(filePath);
69
+ const content = await promises.readFile(filePath, "utf-8");
70
+ return `export default ${JSON.stringify(content)}`;
71
+ }
72
+ /**
73
+ * Load a virtual style module: reads the backing stylesheet, runs it through
74
+ * Vite's CSS preprocessor, and returns the result as a default-exported
75
+ * string. Returns undefined when the id is not a virtual style id.
76
+ */
77
+ async function loadVirtualStyleModule(ctx, id, resolvedConfig) {
78
+ if (!isVirtualStyleId(id)) return void 0;
79
+ const filePath = fromVirtualStyleId(id);
80
+ ctx.addWatchFile(filePath);
81
+ const code = await promises.readFile(filePath, "utf-8");
82
+ if (!shouldPreprocessTestCss(resolvedConfig, filePath)) return `export default ${JSON.stringify(code)}`;
83
+ const result = await preprocessCSS(code, filePath, resolvedConfig);
84
+ return `export default ${JSON.stringify(result.code)}`;
85
+ }
86
+ //#endregion
87
+ export { loadVirtualRawModule, loadVirtualStyleModule, rewriteHtmlRawImport, rewriteInlineStyleImport, shouldPreprocessTestCss };
88
+
89
+ //# sourceMappingURL=virtual-resources.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"virtual-resources.js","names":[],"sources":["../../../../src/lib/utils/virtual-resources.ts"],"sourcesContent":["// Shared Vite plugin helpers for routing component resources (templates,\n// external styles) through virtual module ids. Both angular-vite-plugin and\n// fast-compile-plugin use these so the rewriting + loading behavior stays\n// in sync between them.\n\nimport { promises as fsPromises } from 'node:fs';\nimport { dirname, isAbsolute, resolve } from 'node:path';\nimport { normalizePath, preprocessCSS, type ResolvedConfig } from 'vite';\n\nimport {\n fromVirtualRawId,\n fromVirtualStyleId,\n isVirtualRawId,\n isVirtualStyleId,\n toVirtualRawId,\n toVirtualStyleId,\n} from './virtual-ids.js';\n\nconst INLINE_STYLE_QUERY_RE = /\\.(css|scss|sass|less)\\?inline$/;\n\ninterface PluginContextLike {\n addWatchFile(path: string): void;\n}\n\ntype CssPattern = string | RegExp;\n\ntype VitestCssOption =\n | boolean\n | undefined\n | {\n // Vitest accepts both single patterns and arrays for include/exclude.\n include?: CssPattern | CssPattern[];\n exclude?: CssPattern | CssPattern[];\n };\n\n/**\n * True when the given stylesheet should be run through Vite's `preprocessCSS`,\n * given Vitest's `test.css` semantics:\n *\n * - non-test contexts → always preprocess\n * - `test.css: true` → always preprocess\n * - `test.css: false` → never preprocess\n * - `test.css: { include }` → preprocess only when `filePath` matches an\n * include pattern and isn't excluded\n * - `test.css` unset → Vitest defaults to `include: []`, so nothing\n * matches and we don't preprocess\n *\n * Used to gate `preprocessCSS` calls in test mode so we don't surface SCSS\n * deprecation noise or pay preprocessing cost the user didn't ask for. (#2297)\n */\nexport function shouldPreprocessTestCss(\n config: ResolvedConfig | undefined,\n filePath?: string,\n): boolean {\n const isTest = process.env['NODE_ENV'] === 'test' || !!process.env['VITEST'];\n if (!isTest) return true;\n\n const cssOpt = (\n config as\n | (ResolvedConfig & { test?: { css?: VitestCssOption } })\n | undefined\n )?.test?.css;\n\n if (cssOpt === true) return true;\n if (cssOpt === false || cssOpt == null) return false;\n\n const toArray = <T>(value: T | T[] | undefined): T[] =>\n value == null ? [] : Array.isArray(value) ? value : [value];\n const include = toArray(cssOpt.include);\n const exclude = toArray(cssOpt.exclude);\n if (!filePath || include.length === 0) return false;\n\n const matches = (patterns: CssPattern[]) =>\n patterns.some((p) =>\n typeof p === 'string' ? filePath.includes(p) : p.test(filePath),\n );\n\n return matches(include) && !matches(exclude);\n}\n\nfunction resolveImportPath(\n id: string,\n importer: string | undefined,\n): string | undefined {\n const filePath = id.split('?')[0];\n return isAbsolute(filePath)\n ? normalizePath(filePath)\n : importer\n ? normalizePath(resolve(dirname(importer), filePath))\n : undefined;\n}\n\n/**\n * Rewrite a user `.html?raw` import to a virtual raw id. Returns undefined\n * when the id doesn't match, so callers can fall through to the next check.\n *\n * Routed through a virtual id (rather than `?analog-raw`) so the path Vite\n * sees has no file extension — keeps vite:asset / vite:css from re-tagging\n * the id before our load hook runs.\n */\nexport function rewriteHtmlRawImport(\n id: string,\n importer: string | undefined,\n): string | undefined {\n if (!id.includes('.html?raw')) return undefined;\n const resolved = resolveImportPath(id, importer);\n return resolved ? toVirtualRawId(resolved) : undefined;\n}\n\n/**\n * Rewrite a user `.scss?inline` / `.css?inline` / … import to a virtual\n * style id. Returns undefined when the id doesn't match.\n */\nexport function rewriteInlineStyleImport(\n id: string,\n importer: string | undefined,\n): string | undefined {\n if (!INLINE_STYLE_QUERY_RE.test(id)) return undefined;\n const resolved = resolveImportPath(id, importer);\n return resolved ? toVirtualStyleId(resolved) : undefined;\n}\n\n/**\n * Load a virtual raw module: reads the backing file, registers it for HMR\n * watching, and returns its content as a default-exported string. Returns\n * undefined when the id is not a virtual raw id.\n */\nexport async function loadVirtualRawModule(\n ctx: PluginContextLike,\n id: string,\n): Promise<string | undefined> {\n if (!isVirtualRawId(id)) return undefined;\n const filePath = fromVirtualRawId(id);\n ctx.addWatchFile(filePath);\n const content = await fsPromises.readFile(filePath, 'utf-8');\n return `export default ${JSON.stringify(content)}`;\n}\n\n/**\n * Load a virtual style module: reads the backing stylesheet, runs it through\n * Vite's CSS preprocessor, and returns the result as a default-exported\n * string. Returns undefined when the id is not a virtual style id.\n */\nexport async function loadVirtualStyleModule(\n ctx: PluginContextLike,\n id: string,\n resolvedConfig: ResolvedConfig,\n): Promise<string | undefined> {\n if (!isVirtualStyleId(id)) return undefined;\n const filePath = fromVirtualStyleId(id);\n ctx.addWatchFile(filePath);\n const code = await fsPromises.readFile(filePath, 'utf-8');\n // In tests, mirror Vitest's `test.css` rules — defaults to no preprocessing\n // (matches Vite's CSS pipeline behavior under Vitest). (#2297)\n if (!shouldPreprocessTestCss(resolvedConfig, filePath)) {\n return `export default ${JSON.stringify(code)}`;\n }\n const result = await preprocessCSS(code, filePath, resolvedConfig);\n return `export default ${JSON.stringify(result.code)}`;\n}\n"],"mappings":";;;;;AAkBA,IAAM,wBAAwB;;;;;;;;;;;;;;;;AAgC9B,SAAgB,wBACd,QACA,UACS;AAET,KAAI,EAAA,QAAA,IAAA,aADuC,UAAU,CAAC,CAAC,QAAQ,IAAI,WACtD,QAAO;CAEpB,MAAM,SACJ,QAGC,MAAM;AAET,KAAI,WAAW,KAAM,QAAO;AAC5B,KAAI,WAAW,SAAS,UAAU,KAAM,QAAO;CAE/C,MAAM,WAAc,UAClB,SAAS,OAAO,EAAE,GAAG,MAAM,QAAQ,MAAM,GAAG,QAAQ,CAAC,MAAM;CAC7D,MAAM,UAAU,QAAQ,OAAO,QAAQ;CACvC,MAAM,UAAU,QAAQ,OAAO,QAAQ;AACvC,KAAI,CAAC,YAAY,QAAQ,WAAW,EAAG,QAAO;CAE9C,MAAM,WAAW,aACf,SAAS,MAAM,MACb,OAAO,MAAM,WAAW,SAAS,SAAS,EAAE,GAAG,EAAE,KAAK,SAAS,CAChE;AAEH,QAAO,QAAQ,QAAQ,IAAI,CAAC,QAAQ,QAAQ;;AAG9C,SAAS,kBACP,IACA,UACoB;CACpB,MAAM,WAAW,GAAG,MAAM,IAAI,CAAC;AAC/B,QAAO,WAAW,SAAS,GACvB,cAAc,SAAS,GACvB,WACE,cAAc,QAAQ,QAAQ,SAAS,EAAE,SAAS,CAAC,GACnD,KAAA;;;;;;;;;;AAWR,SAAgB,qBACd,IACA,UACoB;AACpB,KAAI,CAAC,GAAG,SAAS,YAAY,CAAE,QAAO,KAAA;CACtC,MAAM,WAAW,kBAAkB,IAAI,SAAS;AAChD,QAAO,WAAW,eAAe,SAAS,GAAG,KAAA;;;;;;AAO/C,SAAgB,yBACd,IACA,UACoB;AACpB,KAAI,CAAC,sBAAsB,KAAK,GAAG,CAAE,QAAO,KAAA;CAC5C,MAAM,WAAW,kBAAkB,IAAI,SAAS;AAChD,QAAO,WAAW,iBAAiB,SAAS,GAAG,KAAA;;;;;;;AAQjD,eAAsB,qBACpB,KACA,IAC6B;AAC7B,KAAI,CAAC,eAAe,GAAG,CAAE,QAAO,KAAA;CAChC,MAAM,WAAW,iBAAiB,GAAG;AACrC,KAAI,aAAa,SAAS;CAC1B,MAAM,UAAU,MAAM,SAAW,SAAS,UAAU,QAAQ;AAC5D,QAAO,kBAAkB,KAAK,UAAU,QAAQ;;;;;;;AAQlD,eAAsB,uBACpB,KACA,IACA,gBAC6B;AAC7B,KAAI,CAAC,iBAAiB,GAAG,CAAE,QAAO,KAAA;CAClC,MAAM,WAAW,mBAAmB,GAAG;AACvC,KAAI,aAAa,SAAS;CAC1B,MAAM,OAAO,MAAM,SAAW,SAAS,UAAU,QAAQ;AAGzD,KAAI,CAAC,wBAAwB,gBAAgB,SAAS,CACpD,QAAO,kBAAkB,KAAK,UAAU,KAAK;CAE/C,MAAM,SAAS,MAAM,cAAc,MAAM,UAAU,eAAe;AAClE,QAAO,kBAAkB,KAAK,UAAU,OAAO,KAAK"}
@@ -0,0 +1,2 @@
1
+ import "@angular/compiler";
2
+ export {};
package/setup-vitest.d.ts DELETED
@@ -1,4 +0,0 @@
1
- import 'zone.js';
2
- import 'zone.js/plugins/sync-test';
3
- import 'zone.js/plugins/proxy';
4
- import 'zone.js/testing';
package/setup-vitest.js DELETED
@@ -1,215 +0,0 @@
1
- import 'zone.js';
2
- import 'zone.js/plugins/sync-test';
3
- import 'zone.js/plugins/proxy';
4
- import 'zone.js/testing';
5
- /**
6
- * Patch Vitest's describe/test/beforeEach/afterEach functions so test code
7
- * always runs in a testZone (ProxyZone).
8
- */
9
- /* global Zone */
10
- const { Zone } = globalThis;
11
- if (Zone === undefined) {
12
- throw new Error('Missing: Zone (zone.js)');
13
- }
14
- if (globalThis['__vitest_zone_patch__'] === true) {
15
- throw new Error("'vitest' has already been patched with 'Zone'.");
16
- }
17
- globalThis['__vitest_zone_patch__'] = true;
18
- const { SyncTestZoneSpec } = Zone;
19
- const { ProxyZoneSpec } = Zone;
20
- if (SyncTestZoneSpec === undefined) {
21
- throw new Error('Missing: SyncTestZoneSpec (zone.js/plugins/sync-test)');
22
- }
23
- if (ProxyZoneSpec === undefined) {
24
- throw new Error('Missing: ProxyZoneSpec (zone.js/plugins/proxy.js)');
25
- }
26
- const env = globalThis;
27
- const ambientZone = Zone.current;
28
- // Create a synchronous-only zone in which to run `describe` blocks in order to
29
- // Raise an error if any asynchronous operations are attempted
30
- // Inside of a `describe` but outside of a `beforeEach` or `it`.
31
- const syncZone = ambientZone.fork(new SyncTestZoneSpec('vitest.describe'));
32
- function wrapDescribeInZone(describeBody) {
33
- return function (...args) {
34
- return syncZone.run(describeBody, null, args);
35
- };
36
- }
37
- // Create a proxy zone in which to run `test` blocks so that the tests function
38
- // Can retroactively install different zones.
39
- const testProxyZone = ambientZone.fork(new ProxyZoneSpec());
40
- function wrapTestInZone(testBody) {
41
- if (testBody === undefined) {
42
- return;
43
- }
44
- const wrappedFunc = function wrappedFunc(...args) {
45
- return testProxyZone.run(testBody, null, args);
46
- };
47
- try {
48
- Object.defineProperty(wrappedFunc, 'length', {
49
- configurable: true,
50
- enumerable: false,
51
- writable: true,
52
- });
53
- wrappedFunc.length = testBody.length;
54
- }
55
- catch (e) {
56
- return testBody.length === 0
57
- ? () => testProxyZone.run(testBody, null)
58
- : (done) => testProxyZone.run(testBody, null, [done]);
59
- }
60
- return wrappedFunc;
61
- }
62
- /**
63
- * Allows Vitest to handle Angular test fixtures
64
- *
65
- * Vitest Snapshot guide ==> https://vitest.dev/guide/snapshot.html
66
- *
67
- * @returns customSnapshotSerializer for Angular Fixture Component
68
- */
69
- const customSnapshotSerializer = () => {
70
- function serialize(val, config, indentation, depth, refs, printer) {
71
- // `printer` is a function that serializes a value using existing plugins.
72
- return `${printer(fixtureVitestSerializer(val), config, indentation, depth, refs)}`;
73
- }
74
- function test(val) {
75
- // * If it's a ComponentFixture we apply the transformation rules
76
- return val && isAngularFixture(val);
77
- }
78
- return {
79
- serialize,
80
- test,
81
- };
82
- };
83
- /**
84
- * Check if is an Angular fixture
85
- *
86
- * @param val Angular fixture
87
- * @returns boolean who check if is an angular fixture
88
- */
89
- function isAngularFixture(val) {
90
- if (typeof val !== 'object') {
91
- return false;
92
- }
93
- if (val['componentRef'] || val['componentInstance']) {
94
- return true;
95
- }
96
- if (val['componentType']) {
97
- return true;
98
- }
99
- // * Angular fixture keys in Fixture component Object
100
- const fixtureKeys = [
101
- 'componentRef',
102
- 'ngZone',
103
- 'effectRunner',
104
- '_autoDetect',
105
- '_isStable',
106
- '_isDestroyed',
107
- '_resolve',
108
- '_promise',
109
- '_onUnstableSubscription',
110
- '_onStableSubscription',
111
- '_onMicrotaskEmptySubscription',
112
- '_onErrorSubscription',
113
- 'changeDetectorRef',
114
- 'elementRef',
115
- 'debugElement',
116
- 'componentInstance',
117
- 'nativeElement',
118
- ];
119
- // * Angular fixture keys in Fixture componentRef Object
120
- const fixtureComponentRefKeys = [
121
- 'location',
122
- '_rootLView',
123
- '_tNode',
124
- 'previousInputValues',
125
- 'instance',
126
- 'changeDetectorRef',
127
- 'hostView',
128
- 'componentType',
129
- ];
130
- return (JSON.stringify(Object.keys(val)) === JSON.stringify(fixtureKeys) ||
131
- JSON.stringify(Object.keys(val)) === JSON.stringify(fixtureComponentRefKeys));
132
- }
133
- /**
134
- * Serialize Angular fixture for Vitest
135
- *
136
- * @param fixture Angular Fixture Component
137
- * @returns HTML Child Node
138
- */
139
- function fixtureVitestSerializer(fixture) {
140
- // * Get Component meta data
141
- const componentType = (fixture && fixture.componentType
142
- ? fixture.componentType
143
- : fixture.componentRef.componentType);
144
- let inputsData = '';
145
- const selector = Reflect.getOwnPropertyDescriptor(componentType, '__annotations__')?.value[0].selector;
146
- if (componentType && componentType.propDecorators) {
147
- inputsData = Object.entries(componentType.propDecorators)
148
- .map(([key, value]) => `${key}="${value}"`)
149
- .join('');
150
- }
151
- // * Get DOM Elements
152
- const divElement = fixture && fixture.nativeElement
153
- ? fixture.nativeElement
154
- : fixture.location.nativeElement;
155
- // * Convert string data to HTML data
156
- const doc = new DOMParser().parseFromString(`<${selector} ${inputsData}>${divElement.innerHTML}</${selector}>`, 'text/html');
157
- return doc.body.childNodes[0];
158
- }
159
- /**
160
- * Bind describe method to wrap describe.each function
161
- */
162
- const bindDescribe = (self, originalVitestFn) => function bindDescribe(...eachArgs) {
163
- return function bindDescribe(...args) {
164
- args[1] = wrapDescribeInZone(args[1]);
165
- return originalVitestFn.apply(self, eachArgs).apply(self, args);
166
- };
167
- };
168
- /**
169
- * Bind test method to wrap test.each function
170
- */
171
- const bindTest = (self, originalVitestFn) => function bindTest(...eachArgs) {
172
- return function bindTest(...args) {
173
- args[1] = wrapTestInZone(args[1]);
174
- return originalVitestFn.apply(self, eachArgs).apply(self, args);
175
- };
176
- };
177
- ['describe'].forEach((methodName) => {
178
- const originalvitestFn = env[methodName];
179
- env[methodName] = function (...args) {
180
- args[1] = wrapDescribeInZone(args[1]);
181
- return originalvitestFn.apply(this, args);
182
- };
183
- env[methodName].each = bindDescribe(originalvitestFn, originalvitestFn.each);
184
- if (methodName === 'describe') {
185
- env[methodName].only = bindDescribe(originalvitestFn, originalvitestFn.only);
186
- env[methodName].skip = bindDescribe(originalvitestFn, originalvitestFn.skip);
187
- }
188
- });
189
- ['test', 'it'].forEach((methodName) => {
190
- const originalvitestFn = env[methodName];
191
- env[methodName] = function (...args) {
192
- args[1] = wrapTestInZone(args[1]);
193
- return originalvitestFn.apply(this, args);
194
- };
195
- env[methodName].each = bindTest(originalvitestFn, originalvitestFn.each);
196
- env[methodName].only = bindTest(originalvitestFn, originalvitestFn.only);
197
- env[methodName].skip = bindTest(originalvitestFn, originalvitestFn.skip);
198
- if (methodName === 'test' || methodName === 'it') {
199
- env[methodName].todo = function todo(...args) {
200
- return originalvitestFn.todo.apply(this, args);
201
- };
202
- }
203
- });
204
- ['beforeEach', 'afterEach', 'beforeAll', 'afterAll'].forEach((methodName) => {
205
- const originalvitestFn = env[methodName];
206
- env[methodName] = function (...args) {
207
- args[0] = wrapTestInZone(args[0]);
208
- return originalvitestFn.apply(this, args);
209
- };
210
- });
211
- ['expect'].forEach((methodName) => {
212
- const originalvitestFn = env[methodName];
213
- return originalvitestFn.addSnapshotSerializer(customSnapshotSerializer());
214
- });
215
- //# sourceMappingURL=setup-vitest.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"setup-vitest.js","sourceRoot":"","sources":["../../../packages/vite-plugin-angular/setup-vitest.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,CAAC;AACjB,OAAO,2BAA2B,CAAC;AACnC,OAAO,uBAAuB,CAAC;AAC/B,OAAO,iBAAiB,CAAC;AAEzB;;;GAGG;AACH,iBAAiB;AACjB,MAAM,EAAE,IAAI,EAAE,GAAG,UAAiB,CAAC;AAEnC,IAAI,IAAI,KAAK,SAAS,EAAE,CAAC;IACvB,MAAM,IAAI,KAAK,CAAC,yBAAyB,CAAC,CAAC;AAC7C,CAAC;AAED,IAAK,UAAkB,CAAC,uBAAuB,CAAC,KAAK,IAAI,EAAE,CAAC;IAC1D,MAAM,IAAI,KAAK,CAAC,gDAAgD,CAAC,CAAC;AACpE,CAAC;AAEA,UAAkB,CAAC,uBAAuB,CAAC,GAAG,IAAI,CAAC;AACpD,MAAM,EAAE,gBAAgB,EAAE,GAAG,IAAI,CAAC;AAClC,MAAM,EAAE,aAAa,EAAE,GAAG,IAAI,CAAC;AAE/B,IAAI,gBAAgB,KAAK,SAAS,EAAE,CAAC;IACnC,MAAM,IAAI,KAAK,CAAC,uDAAuD,CAAC,CAAC;AAC3E,CAAC;AACD,IAAI,aAAa,KAAK,SAAS,EAAE,CAAC;IAChC,MAAM,IAAI,KAAK,CAAC,mDAAmD,CAAC,CAAC;AACvE,CAAC;AAED,MAAM,GAAG,GAAG,UAAiB,CAAC;AAC9B,MAAM,WAAW,GAAG,IAAI,CAAC,OAAO,CAAC;AAEjC,+EAA+E;AAC/E,8DAA8D;AAC9D,gEAAgE;AAChE,MAAM,QAAQ,GAAG,WAAW,CAAC,IAAI,CAAC,IAAI,gBAAgB,CAAC,iBAAiB,CAAC,CAAC,CAAC;AAC3E,SAAS,kBAAkB,CAAC,YAAiB;IAC3C,OAAO,UAAU,GAAG,IAAS;QAC3B,OAAO,QAAQ,CAAC,GAAG,CAAC,YAAY,EAAE,IAAI,EAAE,IAAI,CAAC,CAAC;IAChD,CAAC,CAAC;AACJ,CAAC;AAED,+EAA+E;AAC/E,6CAA6C;AAC7C,MAAM,aAAa,GAAG,WAAW,CAAC,IAAI,CAAC,IAAI,aAAa,EAAE,CAAC,CAAC;AAC5D,SAAS,cAAc,CAAC,QAAoC;IAC1D,IAAI,QAAQ,KAAK,SAAS,EAAE,CAAC;QAC3B,OAAO;IACT,CAAC;IAED,MAAM,WAAW,GAAG,SAAS,WAAW,CAAC,GAAG,IAAW;QACrD,OAAO,aAAa,CAAC,GAAG,CAAC,QAAQ,EAAE,IAAI,EAAE,IAAI,CAAC,CAAC;IACjD,CAAC,CAAC;IACF,IAAI,CAAC;QACH,MAAM,CAAC,cAAc,CAAC,WAAW,EAAE,QAAQ,EAAE;YAC3C,YAAY,EAAE,IAAI;YAClB,UAAU,EAAE,KAAK;YACjB,QAAQ,EAAE,IAAI;SACf,CAAC,CAAC;QACH,WAAW,CAAC,MAAM,GAAG,QAAQ,CAAC,MAAM,CAAC;IACvC,CAAC;IAAC,OAAO,CAAC,EAAE,CAAC;QACX,OAAO,QAAQ,CAAC,MAAM,KAAK,CAAC;YAC1B,CAAC,CAAC,GAAG,EAAE,CAAC,aAAa,CAAC,GAAG,CAAC,QAAQ,EAAE,IAAI,CAAC;YACzC,CAAC,CAAC,CAAC,IAAS,EAAE,EAAE,CAAC,aAAa,CAAC,GAAG,CAAC,QAAQ,EAAE,IAAI,EAAE,CAAC,IAAI,CAAC,CAAC,CAAC;IAC/D,CAAC;IAED,OAAO,WAAW,CAAC;AACrB,CAAC;AAED;;;;;;GAMG;AACH,MAAM,wBAAwB,GAAG,GAAG,EAAE;IACpC,SAAS,SAAS,CAChB,GAAQ,EACR,MAAW,EACX,WAAgB,EAChB,KAAU,EACV,IAAS,EACT,OAAY;QAEZ,0EAA0E;QAC1E,OAAO,GAAG,OAAO,CACf,uBAAuB,CAAC,GAAG,CAAC,EAC5B,MAAM,EACN,WAAW,EACX,KAAK,EACL,IAAI,CACL,EAAE,CAAC;IACN,CAAC;IACD,SAAS,IAAI,CAAC,GAAQ;QACpB,iEAAiE;QACjE,OAAO,GAAG,IAAI,gBAAgB,CAAC,GAAG,CAAC,CAAC;IACtC,CAAC;IACD,OAAO;QACL,SAAS;QACT,IAAI;KACL,CAAC;AACJ,CAAC,CAAC;AAEF;;;;;GAKG;AACH,SAAS,gBAAgB,CAAC,GAAQ;IAChC,IAAI,OAAO,GAAG,KAAK,QAAQ,EAAE,CAAC;QAC5B,OAAO,KAAK,CAAC;IACf,CAAC;IAED,IAAI,GAAG,CAAC,cAAc,CAAC,IAAI,GAAG,CAAC,mBAAmB,CAAC,EAAE,CAAC;QACpD,OAAO,IAAI,CAAC;IACd,CAAC;IAED,IAAI,GAAG,CAAC,eAAe,CAAC,EAAE,CAAC;QACzB,OAAO,IAAI,CAAC;IACd,CAAC;IAED,qDAAqD;IACrD,MAAM,WAAW,GAAG;QAClB,cAAc;QACd,QAAQ;QACR,cAAc;QACd,aAAa;QACb,WAAW;QACX,cAAc;QACd,UAAU;QACV,UAAU;QACV,yBAAyB;QACzB,uBAAuB;QACvB,+BAA+B;QAC/B,sBAAsB;QACtB,mBAAmB;QACnB,YAAY;QACZ,cAAc;QACd,mBAAmB;QACnB,eAAe;KAChB,CAAC;IAEF,wDAAwD;IACxD,MAAM,uBAAuB,GAAG;QAC9B,UAAU;QACV,YAAY;QACZ,QAAQ;QACR,qBAAqB;QACrB,UAAU;QACV,mBAAmB;QACnB,UAAU;QACV,eAAe;KAChB,CAAC;IAEF,OAAO,CACL,IAAI,CAAC,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,KAAK,IAAI,CAAC,SAAS,CAAC,WAAW,CAAC;QAChE,IAAI,CAAC,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,KAAK,IAAI,CAAC,SAAS,CAAC,uBAAuB,CAAC,CAC7E,CAAC;AACJ,CAAC;AAED;;;;;GAKG;AACH,SAAS,uBAAuB,CAAC,OAAY;IAC3C,4BAA4B;IAC5B,MAAM,aAAa,GAAG,CACpB,OAAO,IAAI,OAAO,CAAC,aAAa;QAC9B,CAAC,CAAC,OAAO,CAAC,aAAa;QACvB,CAAC,CAAC,OAAO,CAAC,YAAY,CAAC,aAAa,CAChC,CAAC;IAET,IAAI,UAAU,GAAG,EAAE,CAAC;IAEpB,MAAM,QAAQ,GAAG,OAAO,CAAC,wBAAwB,CAC/C,aAAa,EACb,iBAAiB,CAClB,EAAE,KAAK,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC;IAErB,IAAI,aAAa,IAAI,aAAa,CAAC,cAAc,EAAE,CAAC;QAClD,UAAU,GAAG,MAAM,CAAC,OAAO,CAAC,aAAa,CAAC,cAAc,CAAC;aACtD,GAAG,CAAC,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,EAAE,EAAE,CAAC,GAAG,GAAG,KAAK,KAAK,GAAG,CAAC;aAC1C,IAAI,CAAC,EAAE,CAAC,CAAC;IACd,CAAC;IAED,qBAAqB;IACrB,MAAM,UAAU,GACd,OAAO,IAAI,OAAO,CAAC,aAAa;QAC9B,CAAC,CAAC,OAAO,CAAC,aAAa;QACvB,CAAC,CAAC,OAAO,CAAC,QAAQ,CAAC,aAAa,CAAC;IAErC,qCAAqC;IACrC,MAAM,GAAG,GAAG,IAAI,SAAS,EAAE,CAAC,eAAe,CACzC,IAAI,QAAQ,IAAI,UAAU,IAAI,UAAU,CAAC,SAAS,KAAK,QAAQ,GAAG,EAClE,WAAW,CACZ,CAAC;IAEF,OAAO,GAAG,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC;AAChC,CAAC;AAED;;GAEG;AACH,MAAM,YAAY,GAAG,CACnB,IAAS,EACT,gBASC,EACD,EAAE,CACF,SAAS,YAAY,CAAC,GAAG,QAAa;IACpC,OAAO,SAAS,YAAY,CAAC,GAAG,IAAW;QACzC,IAAI,CAAC,CAAC,CAAC,GAAG,kBAAkB,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;QAEtC,OAAO,gBAAgB,CAAC,KAAK,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;IAClE,CAAC,CAAC;AACJ,CAAC,CAAC;AAEJ;;GAEG;AACH,MAAM,QAAQ,GAAG,CACf,IAAS,EACT,gBASC,EACD,EAAE,CACF,SAAS,QAAQ,CAAC,GAAG,QAAa;IAChC,OAAO,SAAS,QAAQ,CAAC,GAAG,IAAW;QACrC,IAAI,CAAC,CAAC,CAAC,GAAG,cAAc,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;QAElC,OAAO,gBAAgB,CAAC,KAAK,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;IAClE,CAAC,CAAC;AACJ,CAAC,CAAC;AAEJ,CAAC,UAAU,CAAC,CAAC,OAAO,CAAC,CAAC,UAAU,EAAE,EAAE;IAClC,MAAM,gBAAgB,GAAG,GAAG,CAAC,UAAU,CAAC,CAAC;IACzC,GAAG,CAAC,UAAU,CAAC,GAAG,UAAU,GAAG,IAAW;QACxC,IAAI,CAAC,CAAC,CAAC,GAAG,kBAAkB,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;QAEtC,OAAO,gBAAgB,CAAC,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;IAC5C,CAAC,CAAC;IACF,GAAG,CAAC,UAAU,CAAC,CAAC,IAAI,GAAG,YAAY,CAAC,gBAAgB,EAAE,gBAAgB,CAAC,IAAI,CAAC,CAAC;IAC7E,IAAI,UAAU,KAAK,UAAU,EAAE,CAAC;QAC9B,GAAG,CAAC,UAAU,CAAC,CAAC,IAAI,GAAG,YAAY,CACjC,gBAAgB,EAChB,gBAAgB,CAAC,IAAI,CACtB,CAAC;QACF,GAAG,CAAC,UAAU,CAAC,CAAC,IAAI,GAAG,YAAY,CACjC,gBAAgB,EAChB,gBAAgB,CAAC,IAAI,CACtB,CAAC;IACJ,CAAC;AACH,CAAC,CAAC,CAAC;AAEH,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC,OAAO,CAAC,CAAC,UAAU,EAAE,EAAE;IACpC,MAAM,gBAAgB,GAAG,GAAG,CAAC,UAAU,CAAC,CAAC;IACzC,GAAG,CAAC,UAAU,CAAC,GAAG,UAAU,GAAG,IAAW;QACxC,IAAI,CAAC,CAAC,CAAC,GAAG,cAAc,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;QAElC,OAAO,gBAAgB,CAAC,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;IAC5C,CAAC,CAAC;IACF,GAAG,CAAC,UAAU,CAAC,CAAC,IAAI,GAAG,QAAQ,CAAC,gBAAgB,EAAE,gBAAgB,CAAC,IAAI,CAAC,CAAC;IACzE,GAAG,CAAC,UAAU,CAAC,CAAC,IAAI,GAAG,QAAQ,CAAC,gBAAgB,EAAE,gBAAgB,CAAC,IAAI,CAAC,CAAC;IACzE,GAAG,CAAC,UAAU,CAAC,CAAC,IAAI,GAAG,QAAQ,CAAC,gBAAgB,EAAE,gBAAgB,CAAC,IAAI,CAAC,CAAC;IAEzE,IAAI,UAAU,KAAK,MAAM,IAAI,UAAU,KAAK,IAAI,EAAE,CAAC;QACjD,GAAG,CAAC,UAAU,CAAC,CAAC,IAAI,GAAG,SAAS,IAAI,CAAC,GAAG,IAAS;YAC/C,OAAO,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;QACjD,CAAC,CAAC;IACJ,CAAC;AACH,CAAC,CAAC,CAAC;AAEH,CAAC,YAAY,EAAE,WAAW,EAAE,WAAW,EAAE,UAAU,CAAC,CAAC,OAAO,CAAC,CAAC,UAAU,EAAE,EAAE;IAC1E,MAAM,gBAAgB,GAAG,GAAG,CAAC,UAAU,CAAC,CAAC;IAEzC,GAAG,CAAC,UAAU,CAAC,GAAG,UAAU,GAAG,IAAW;QACxC,IAAI,CAAC,CAAC,CAAC,GAAG,cAAc,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;QAElC,OAAO,gBAAgB,CAAC,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;IAC5C,CAAC,CAAC;AACJ,CAAC,CAAC,CAAC;AAEH,CAAC,QAAQ,CAAC,CAAC,OAAO,CAAC,CAAC,UAAU,EAAE,EAAE;IAChC,MAAM,gBAAgB,GAAG,GAAG,CAAC,UAAU,CAAC,CAAC;IACzC,OAAO,gBAAgB,CAAC,qBAAqB,CAAC,wBAAwB,EAAE,CAAC,CAAC;AAC5E,CAAC,CAAC,CAAC"}
package/src/lib/models.js DELETED
@@ -1 +0,0 @@
1
- //# sourceMappingURL=models.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"models.js","sourceRoot":"","sources":["../../../../../packages/vite-plugin-angular/src/lib/models.ts"],"names":[],"mappings":""}
@@ -1,3 +0,0 @@
1
- # @analogjs/vite-plugin-angular-tools
2
-
3
- Builders & Schematics for the `@analogjs/vite-plugin-angular` package.
File without changes
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../packages/vite-plugin-angular-tools/src/index.ts"],"names":[],"mappings":""}
@@ -1 +0,0 @@
1
- //# sourceMappingURL=compiler-plugin-options.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"compiler-plugin-options.js","sourceRoot":"","sources":["../../../../../../packages/vite-plugin-angular/src/lib/utils/compiler-plugin-options.ts"],"names":[],"mappings":""}