@nx/nuxt 21.3.6 → 21.4.0-beta.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/index.d.ts +1 -0
- package/index.d.ts.map +1 -0
- package/package.json +21 -17
- package/plugin.d.ts +1 -0
- package/plugin.d.ts.map +1 -0
- package/project.json +52 -0
- package/src/generators/application/application.d.ts +1 -0
- package/src/generators/application/application.d.ts.map +1 -0
- package/src/generators/application/lib/add-e2e.d.ts +3 -2
- package/src/generators/application/lib/add-e2e.d.ts.map +1 -0
- package/src/generators/application/lib/add-vitest.d.ts +1 -0
- package/src/generators/application/lib/add-vitest.d.ts.map +1 -0
- package/src/generators/application/lib/ensure-dependencies.d.ts +1 -0
- package/src/generators/application/lib/ensure-dependencies.d.ts.map +1 -0
- package/src/generators/application/lib/normalize-options.d.ts +1 -0
- package/src/generators/application/lib/normalize-options.d.ts.map +1 -0
- package/src/generators/application/schema.json +1 -1
- package/src/generators/init/init.d.ts +1 -0
- package/src/generators/init/init.d.ts.map +1 -0
- package/src/generators/init/lib/utils.d.ts +1 -0
- package/src/generators/init/lib/utils.d.ts.map +1 -0
- package/src/generators/storybook-configuration/configuration.d.ts +1 -0
- package/src/generators/storybook-configuration/configuration.d.ts.map +1 -0
- package/src/migrations/update-18-1-0/add-include-tsconfig.d.ts +1 -0
- package/src/migrations/update-18-1-0/add-include-tsconfig.d.ts.map +1 -0
- package/src/migrations/update-19-6-0/add-vue-plugin-to-storybook-config.d.ts +1 -0
- package/src/migrations/update-19-6-0/add-vue-plugin-to-storybook-config.d.ts.map +1 -0
- package/src/plugins/plugin.d.ts +1 -0
- package/src/plugins/plugin.d.ts.map +1 -0
- package/src/utils/add-linting.d.ts +1 -0
- package/src/utils/add-linting.d.ts.map +1 -0
- package/src/utils/create-ts-config.d.ts +1 -0
- package/src/utils/create-ts-config.d.ts.map +1 -0
- package/src/utils/executor-utils.d.ts +1 -0
- package/src/utils/executor-utils.d.ts.map +1 -0
- package/src/utils/update-gitignore.d.ts +1 -0
- package/src/utils/update-gitignore.d.ts.map +1 -0
- package/src/utils/versions.d.ts +1 -0
- package/src/utils/versions.d.ts.map +1 -0
package/index.d.ts
CHANGED
|
@@ -3,3 +3,4 @@ export { applicationGenerator } from './src/generators/application/application';
|
|
|
3
3
|
export { type InitSchema } from './src/generators/init/schema';
|
|
4
4
|
export { nuxtInitGenerator } from './src/generators/init/init';
|
|
5
5
|
export { storybookConfigurationGenerator } from './src/generators/storybook-configuration/configuration';
|
|
6
|
+
//# sourceMappingURL=index.d.ts.map
|
package/index.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../packages/nuxt/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC;AACrC,OAAO,EAAE,oBAAoB,EAAE,MAAM,0CAA0C,CAAC;AAChF,OAAO,EAAE,KAAK,UAAU,EAAE,MAAM,8BAA8B,CAAC;AAC/D,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAC/D,OAAO,EAAE,+BAA+B,EAAE,MAAM,wDAAwD,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/nuxt",
|
|
3
|
-
"version": "21.
|
|
3
|
+
"version": "21.4.0-beta.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "The Nuxt plugin for Nx contains executors and generators for managing Nuxt applications and libraries within an Nx workspace. It provides:\n\n\n- Integration with libraries such as Vitest, Playwright, Cypress, and Storybook.\n\n- Generators for applications, libraries, and more.\n\n- Library build support for publishing packages to npm or other registries.\n\n- Utilities for automatic workspace refactoring.",
|
|
6
6
|
"repository": {
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"CLI",
|
|
16
16
|
"Front-end"
|
|
17
17
|
],
|
|
18
|
-
"main": "./index",
|
|
18
|
+
"main": "./index.js",
|
|
19
19
|
"typings": "./index.d.ts",
|
|
20
20
|
"author": "Victor Savkin",
|
|
21
21
|
"license": "MIT",
|
|
@@ -25,35 +25,39 @@
|
|
|
25
25
|
"homepage": "https://nx.dev",
|
|
26
26
|
"generators": "./generators.json",
|
|
27
27
|
"executors": "./executors.json",
|
|
28
|
+
"exports": {
|
|
29
|
+
".": {
|
|
30
|
+
"default": "./index.js",
|
|
31
|
+
"types": "./index.d.ts"
|
|
32
|
+
},
|
|
33
|
+
"./package.json": "./package.json",
|
|
34
|
+
"./generators.json": "./generators.json",
|
|
35
|
+
"./executors.json": "./executors.json",
|
|
36
|
+
"./migrations.json": "./migrations.json",
|
|
37
|
+
"./plugin": "./plugin.js"
|
|
38
|
+
},
|
|
28
39
|
"nx-migrations": {
|
|
29
40
|
"migrations": "./migrations.json"
|
|
30
41
|
},
|
|
31
42
|
"dependencies": {
|
|
32
43
|
"tslib": "^2.3.0",
|
|
33
44
|
"@nuxt/kit": "^3.10.0",
|
|
34
|
-
"@nx/devkit": "21.
|
|
35
|
-
"@nx/js": "21.
|
|
36
|
-
"@nx/eslint": "21.
|
|
37
|
-
"@nx/vue": "21.
|
|
38
|
-
"@nx/vite": "21.
|
|
45
|
+
"@nx/devkit": "21.4.0-beta.1",
|
|
46
|
+
"@nx/js": "21.4.0-beta.1",
|
|
47
|
+
"@nx/eslint": "21.4.0-beta.1",
|
|
48
|
+
"@nx/vue": "21.4.0-beta.1",
|
|
49
|
+
"@nx/vite": "21.4.0-beta.1",
|
|
39
50
|
"@phenomnomnominal/tsquery": "~5.0.1"
|
|
40
51
|
},
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"nx": "21.4.0-beta.1"
|
|
54
|
+
},
|
|
41
55
|
"peerDependencies": {
|
|
42
56
|
"@nuxt/schema": "^3.10.0"
|
|
43
57
|
},
|
|
44
58
|
"publishConfig": {
|
|
45
59
|
"access": "public"
|
|
46
60
|
},
|
|
47
|
-
"exports": {
|
|
48
|
-
"./package.json": "./package.json",
|
|
49
|
-
".": {
|
|
50
|
-
"types": "./index.d.ts",
|
|
51
|
-
"default": "./index.js"
|
|
52
|
-
},
|
|
53
|
-
"./generators.json": "./generators.json",
|
|
54
|
-
"./migrations.json": "./migrations.json",
|
|
55
|
-
"./plugin": "./plugin.js"
|
|
56
|
-
},
|
|
57
61
|
"types": "./index.d.ts",
|
|
58
62
|
"type": "commonjs"
|
|
59
63
|
}
|
package/plugin.d.ts
CHANGED
package/plugin.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"plugin.d.ts","sourceRoot":"","sources":["../../../packages/nuxt/plugin.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,WAAW,EACX,aAAa,EACb,iBAAiB,GAClB,MAAM,sBAAsB,CAAC"}
|
package/project.json
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "nuxt",
|
|
3
|
+
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
4
|
+
"sourceRoot": "packages/nuxt",
|
|
5
|
+
"projectType": "library",
|
|
6
|
+
"targets": {
|
|
7
|
+
"build": {
|
|
8
|
+
"outputs": ["{workspaceRoot}/dist/packages/nuxt/README.md"],
|
|
9
|
+
"command": "node ./scripts/copy-readme.js nuxt"
|
|
10
|
+
},
|
|
11
|
+
"legacy-post-build": {
|
|
12
|
+
"executor": "@nx/workspace-plugin:legacy-post-build",
|
|
13
|
+
"options": {
|
|
14
|
+
"tsConfig": "./tsconfig.lib.json",
|
|
15
|
+
"assets": [
|
|
16
|
+
{
|
|
17
|
+
"input": "packages/nuxt",
|
|
18
|
+
"glob": "**/files/**",
|
|
19
|
+
"output": "/"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"input": "packages/nuxt",
|
|
23
|
+
"glob": "**/files/**/.gitkeep",
|
|
24
|
+
"output": "/"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"input": "packages/nuxt",
|
|
28
|
+
"glob": "**/*.json",
|
|
29
|
+
"ignore": ["**/tsconfig*.json", "project.json", ".eslintrc.json"],
|
|
30
|
+
"output": "/"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"input": "packages/nuxt",
|
|
34
|
+
"glob": "**/*.js",
|
|
35
|
+
"ignore": ["**/jest.config.js"],
|
|
36
|
+
"output": "/"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"input": "packages/nuxt",
|
|
40
|
+
"glob": "**/*.d.ts",
|
|
41
|
+
"output": "/"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"input": "",
|
|
45
|
+
"glob": "LICENSE",
|
|
46
|
+
"output": "/"
|
|
47
|
+
}
|
|
48
|
+
]
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
@@ -3,3 +3,4 @@ import { Schema } from './schema';
|
|
|
3
3
|
export declare function applicationGenerator(tree: Tree, schema: Schema): Promise<GeneratorCallback>;
|
|
4
4
|
export declare function applicationGeneratorInternal(tree: Tree, schema: Schema): Promise<GeneratorCallback>;
|
|
5
5
|
export default applicationGenerator;
|
|
6
|
+
//# sourceMappingURL=application.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"application.d.ts","sourceRoot":"","sources":["../../../../../../packages/nuxt/src/generators/application/application.ts"],"names":[],"mappings":"AAAA,OAAO,EAKL,iBAAiB,EAKjB,IAAI,EAEL,MAAM,YAAY,CAAC;AACpB,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AA2BlC,wBAAsB,oBAAoB,CAAC,IAAI,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,8BAKpE;AAED,wBAAsB,4BAA4B,CAAC,IAAI,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,8BAqM5E;AAED,eAAe,oBAAoB,CAAC"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
import { Tree } from '@nx/devkit';
|
|
1
|
+
import { GeneratorCallback, Tree } from '@nx/devkit';
|
|
2
2
|
import { NormalizedSchema } from '../schema';
|
|
3
|
-
export declare function addE2e(host: Tree, options: NormalizedSchema): Promise<
|
|
3
|
+
export declare function addE2e(host: Tree, options: NormalizedSchema): Promise<GeneratorCallback>;
|
|
4
|
+
//# sourceMappingURL=add-e2e.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"add-e2e.d.ts","sourceRoot":"","sources":["../../../../../../../packages/nuxt/src/generators/application/lib/add-e2e.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,iBAAiB,EAGjB,IAAI,EAEL,MAAM,YAAY,CAAC;AAGpB,OAAO,EAAE,gBAAgB,EAAE,MAAM,WAAW,CAAC;AAG7C,wBAAsB,MAAM,CAC1B,IAAI,EAAE,IAAI,EACV,OAAO,EAAE,gBAAgB,GACxB,OAAO,CAAC,iBAAiB,CAAC,CA8G5B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"add-vitest.d.ts","sourceRoot":"","sources":["../../../../../../../packages/nuxt/src/generators/application/lib/add-vitest.ts"],"names":[],"mappings":"AAAA,OAAO,EAA6B,IAAI,EAAc,MAAM,YAAY,CAAC;AACzE,OAAO,EAAE,gBAAgB,EAAE,MAAM,WAAW,CAAC;AAI7C,wBAAsB,SAAS,CAAC,IAAI,EAAE,IAAI,EAAE,OAAO,EAAE,gBAAgB,mDAkDpE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ensure-dependencies.d.ts","sourceRoot":"","sources":["../../../../../../../packages/nuxt/src/generators/application/lib/ensure-dependencies.ts"],"names":[],"mappings":"AAAA,OAAO,EAAgC,KAAK,IAAI,EAAE,MAAM,YAAY,CAAC;AAerE,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,WAAW,CAAC;AAElD,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,IAAI,EAAE,OAAO,EAAE,gBAAgB,0CAoBvE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"normalize-options.d.ts","sourceRoot":"","sources":["../../../../../../../packages/nuxt/src/generators/application/lib/normalize-options.ts"],"names":[],"mappings":"AAAA,OAAO,EAAS,IAAI,EAAE,MAAM,YAAY,CAAC;AAKzC,OAAO,EAAE,gBAAgB,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;AAGrD,wBAAsB,gBAAgB,CACpC,IAAI,EAAE,IAAI,EACV,OAAO,EAAE,MAAM,GACd,OAAO,CAAC,gBAAgB,CAAC,CA4C3B"}
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"name": {
|
|
20
20
|
"description": "The name of the application.",
|
|
21
21
|
"type": "string",
|
|
22
|
-
"pattern": "
|
|
22
|
+
"pattern": "(?:^@[a-zA-Z0-9-*~][a-zA-Z0-9-*._~]*\\/[a-zA-Z0-9-~][a-zA-Z0-9-._~]*|^[a-zA-Z][^:]*)$",
|
|
23
23
|
"x-priority": "important"
|
|
24
24
|
},
|
|
25
25
|
"skipFormat": {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"init.d.ts","sourceRoot":"","sources":["../../../../../../packages/nuxt/src/generators/init/init.ts"],"names":[],"mappings":"AAAA,OAAO,EAA2B,iBAAiB,EAAE,IAAI,EAAE,MAAM,YAAY,CAAC;AAI9E,OAAO,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AAGtC,wBAAsB,iBAAiB,CAAC,IAAI,EAAE,IAAI,EAAE,MAAM,EAAE,UAAU,8BAqBrE;AAED,eAAe,iBAAiB,CAAC"}
|
|
@@ -3,3 +3,4 @@ import { InitSchema } from '../schema';
|
|
|
3
3
|
export declare function updateDependencies(host: Tree, schema: InitSchema): import("@nx/devkit").GeneratorCallback;
|
|
4
4
|
export declare function addVitestTargetDefaults(tree: Tree): void;
|
|
5
5
|
export declare function addPlugin(tree: Tree): void;
|
|
6
|
+
//# sourceMappingURL=utils.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../../../../../packages/nuxt/src/generators/init/lib/utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,IAAI,EAEL,MAAM,YAAY,CAAC;AAEpB,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAC;AAEvC,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,IAAI,EAAE,MAAM,EAAE,UAAU,0CAYhE;AAED,wBAAgB,uBAAuB,CAAC,IAAI,EAAE,IAAI,QAcjD;AAED,wBAAgB,SAAS,CAAC,IAAI,EAAE,IAAI,QAiDnC"}
|
|
@@ -2,3 +2,4 @@ import { Tree } from '@nx/devkit';
|
|
|
2
2
|
import { Schema } from './schema';
|
|
3
3
|
export declare function storybookConfigurationGenerator(tree: Tree, options: Schema): Promise<import("@nx/devkit").GeneratorCallback>;
|
|
4
4
|
export default storybookConfigurationGenerator;
|
|
5
|
+
//# sourceMappingURL=configuration.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"configuration.d.ts","sourceRoot":"","sources":["../../../../../../packages/nuxt/src/generators/storybook-configuration/configuration.ts"],"names":[],"mappings":"AAAA,OAAO,EAKL,IAAI,EAEL,MAAM,YAAY,CAAC;AAEpB,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAMlC,wBAAsB,+BAA+B,CACnD,IAAI,EAAE,IAAI,EACV,OAAO,EAAE,MAAM,mDA6BhB;AAED,eAAe,+BAA+B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"add-include-tsconfig.d.ts","sourceRoot":"","sources":["../../../../../../packages/nuxt/src/migrations/update-18-1-0/add-include-tsconfig.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,IAAI,EAML,MAAM,YAAY,CAAC;AAIpB,yBAA+B,IAAI,EAAE,IAAI,iBAmCxC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"add-vue-plugin-to-storybook-config.d.ts","sourceRoot":"","sources":["../../../../../../packages/nuxt/src/migrations/update-19-6-0/add-vue-plugin-to-storybook-config.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,KAAK,IAAI,EAEV,MAAM,YAAY,CAAC;AAIpB,yBAA+B,IAAI,EAAE,IAAI,iBA6DxC"}
|
package/src/plugins/plugin.d.ts
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"plugin.d.ts","sourceRoot":"","sources":["../../../../../packages/nuxt/src/plugins/plugin.ts"],"names":[],"mappings":"AACA,OAAO,EAEL,WAAW,EAGX,aAAa,EAOd,MAAM,YAAY,CAAC;AA+BpB,MAAM,WAAW,iBAAiB;IAChC,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAC/B,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAC/B,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,mBAAmB,CAAC,EAAE,MAAM,CAAC;CAC9B;AAED,eAAO,MAAM,aAAa,EAAE,aAAa,CAAC,iBAAiB,CAa1D,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,WAAW,CAAC,iBAAiB,CAqCtD,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"add-linting.d.ts","sourceRoot":"","sources":["../../../../../packages/nuxt/src/utils/add-linting.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,wBAAwB,CAAC;AAE9C,OAAO,EAAE,MAAM,EAAE,UAAU,EAAwB,MAAM,YAAY,CAAC;AAGtE,OAAO,EAEL,iBAAiB,EAElB,MAAM,YAAY,CAAC;AAcpB,wBAAsB,UAAU,CAC9B,IAAI,EAAE,IAAI,EACV,OAAO,EAAE;IACP,MAAM,EAAE,MAAM,GAAG,UAAU,CAAC;IAC5B,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,cAAc,CAAC,EAAE,QAAQ,GAAG,MAAM,CAAC;IACnC,WAAW,CAAC,EAAE,OAAO,CAAC;CACvB,8BAuDF"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-ts-config.d.ts","sourceRoot":"","sources":["../../../../../packages/nuxt/src/utils/create-ts-config.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAa,MAAM,YAAY,CAAC;AAG7C,wBAAgB,cAAc,CAC5B,IAAI,EAAE,IAAI,EACV,OAAO,EAAE;IACP,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,uBAAuB,EAAE,OAAO,CAAC;CAClC,EACD,0BAA0B,EAAE,MAAM,QAgCnC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"executor-utils.d.ts","sourceRoot":"","sources":["../../../../../packages/nuxt/src/utils/executor-utils.ts"],"names":[],"mappings":"AAAA,wBAAgB,wBAAwB,IACa,OAAO,CACxD,cAAc,WAAW,CAAC,CAC3B,CACF"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"update-gitignore.d.ts","sourceRoot":"","sources":["../../../../../packages/nuxt/src/utils/update-gitignore.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,YAAY,CAAC;AAElC,wBAAgB,eAAe,CAAC,IAAI,EAAE,IAAI,QAsBzC"}
|
package/src/utils/versions.d.ts
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"versions.d.ts","sourceRoot":"","sources":["../../../../../packages/nuxt/src/utils/versions.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,SAAS,KAAwC,CAAC;AAG/D,eAAO,MAAM,SAAS,WAAW,CAAC;AAClC,eAAO,MAAM,WAAW,YAAY,CAAC;AACrC,eAAO,MAAM,mBAAmB,UAAU,CAAC;AAC3C,eAAO,MAAM,sBAAsB,WAAW,CAAC;AAG/C,eAAO,MAAM,uBAAuB,WAAW,CAAC"}
|