@onivoro/onix 3.3.7 → 3.3.9

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 (63) hide show
  1. package/package.json +1 -1
  2. package/src/executors/build-cli/executor.d.ts +4 -0
  3. package/src/executors/build-cli/executor.js +20 -0
  4. package/src/executors/build-cli/executor.js.map +1 -0
  5. package/src/executors/build-cli/schema.d.ts +3 -0
  6. package/src/executors/build-cli/schema.json +14 -0
  7. package/src/executors/db/executor.d.ts +4 -0
  8. package/src/executors/db/executor.js +20 -0
  9. package/src/executors/db/executor.js.map +1 -0
  10. package/src/executors/db/schema.d.ts +6 -0
  11. package/src/executors/db/schema.json +28 -0
  12. package/src/executors/deploy/executor.d.ts +4 -0
  13. package/src/executors/deploy/executor.js +27 -0
  14. package/src/executors/deploy/executor.js.map +1 -0
  15. package/src/executors/deploy/schema.d.ts +6 -0
  16. package/src/executors/deploy/schema.json +28 -0
  17. package/src/executors/docker/executor.d.ts +4 -0
  18. package/src/executors/docker/executor.js +24 -0
  19. package/src/executors/docker/executor.js.map +1 -0
  20. package/src/executors/docker/schema.d.ts +5 -0
  21. package/src/executors/docker/schema.json +24 -0
  22. package/src/executors/gen/executor.d.ts +4 -0
  23. package/src/executors/gen/executor.js +19 -0
  24. package/src/executors/gen/executor.js.map +1 -0
  25. package/src/executors/gen/schema.d.ts +3 -0
  26. package/src/executors/gen/schema.json +14 -0
  27. package/src/executors/local/executor.d.ts +4 -0
  28. package/src/executors/local/executor.js +24 -0
  29. package/src/executors/local/executor.js.map +1 -0
  30. package/src/executors/local/schema.d.ts +5 -0
  31. package/src/executors/local/schema.json +25 -0
  32. package/src/executors/playwright/executor.d.ts +4 -0
  33. package/src/executors/playwright/executor.js +21 -0
  34. package/src/executors/playwright/executor.js.map +1 -0
  35. package/src/executors/playwright/schema.d.ts +2 -0
  36. package/src/executors/{schema.json → playwright/schema.json} +3 -2
  37. package/src/executors/vscode/executor.d.ts +4 -0
  38. package/src/executors/vscode/executor.js +42 -0
  39. package/src/executors/vscode/executor.js.map +1 -0
  40. package/src/executors/vscode/schema.d.ts +2 -0
  41. package/src/executors/vscode/schema.json +11 -0
  42. package/src/index.d.ts +3 -0
  43. package/src/index.js +8 -0
  44. package/src/index.js.map +1 -1
  45. package/src/plugins/plugin.d.ts +12 -0
  46. package/src/plugins/plugin.js +152 -0
  47. package/src/plugins/plugin.js.map +1 -0
  48. package/src/types/onix-config.type.d.ts +11 -0
  49. package/src/types/onix-config.type.js +3 -0
  50. package/src/types/onix-config.type.js.map +1 -0
  51. package/src/utils/build.d.ts +1 -0
  52. package/src/utils/build.js +39 -0
  53. package/src/utils/build.js.map +1 -0
  54. package/src/utils/get-project-path-from-name.function.d.ts +1 -0
  55. package/src/utils/get-project-path-from-name.function.js +13 -0
  56. package/src/utils/get-project-path-from-name.function.js.map +1 -0
  57. package/src/utils/playwright.config.d.ts +5 -0
  58. package/src/utils/playwright.config.js +92 -0
  59. package/src/utils/playwright.config.js.map +1 -0
  60. package/src/executors/executor.d.ts +0 -4
  61. package/src/executors/executor.js +0 -11
  62. package/src/executors/executor.js.map +0 -1
  63. package/src/executors/schema.d.ts +0 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onivoro/onix",
3
- "version": "3.3.7",
3
+ "version": "3.3.9",
4
4
  "dependencies": {
5
5
  "@nx/devkit": "20.0.6",
6
6
  "tslib": "^2.3.0"
@@ -0,0 +1,4 @@
1
+ import { PromiseExecutor } from '@nx/devkit';
2
+ import { ExecutorSchema } from './schema';
3
+ declare const runExecutor: PromiseExecutor<ExecutorSchema>;
4
+ export default runExecutor;
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ const devkit_1 = require("@nx/devkit");
5
+ const child_process_1 = require("child_process");
6
+ const runExecutor = (_a) => tslib_1.__awaiter(void 0, [_a], void 0, function* ({ moniker }) {
7
+ try {
8
+ const command = `nx build app-cli-${moniker} --skip-nx-cache && echo '#! /usr/bin/env node' >> dist/temp && cat dist/apps/cli/${moniker}/main.js >> dist/temp && mv dist/temp dist/apps/cli/${moniker}/main.js && chmod +x dist/apps/cli/${moniker}/main.js && npm link`;
9
+ devkit_1.logger.info(command);
10
+ (0, child_process_1.execSync)(command, { stdio: 'inherit' });
11
+ return {
12
+ success: true,
13
+ };
14
+ }
15
+ catch (error) {
16
+ return { success: false };
17
+ }
18
+ });
19
+ exports.default = runExecutor;
20
+ //# sourceMappingURL=executor.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"executor.js","sourceRoot":"","sources":["../../../../../onix/src/executors/build-cli/executor.ts"],"names":[],"mappings":";;;AAAA,uCAAqD;AAErD,iDAAyC;AAEzC,MAAM,WAAW,GAAoC,KAAoB,EAAE,oDAAf,EAAE,OAAO,EAAE;IACrE,IAAI,CAAC;QACH,MAAM,OAAO,GAAG,oBAAoB,OAAO,qFAAqF,OAAO,uDAAuD,OAAO,sCAAsC,OAAO,sBAAsB,CAAC;QAEzQ,eAAM,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAErB,IAAA,wBAAQ,EAAC,OAAO,EAAE,EAAE,KAAK,EAAE,SAAS,EAAE,CAAC,CAAC;QAExC,OAAO;YACL,OAAO,EAAE,IAAI;SACd,CAAC;IACJ,CAAC;IAAC,OAAO,KAAK,EAAE,CAAC;QACf,OAAO,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;IAC5B,CAAC;AACH,CAAC,CAAA,CAAC;AAEF,kBAAe,WAAW,CAAC"}
@@ -0,0 +1,3 @@
1
+ export interface ExecutorSchema {
2
+ moniker: string;
3
+ } // eslint-disable-line
@@ -0,0 +1,14 @@
1
+ {
2
+ "$schema": "https://json-schema.org/schema",
3
+ "version": 2,
4
+ "title": "Gen executor",
5
+ "description": "",
6
+ "type": "object",
7
+ "properties": {
8
+ "moniker": {
9
+ "type": "string",
10
+ "description": "Lowercase single-word identifier used to consistently distinguish related projects and libraries"
11
+ }
12
+ },
13
+ "required": []
14
+ }
@@ -0,0 +1,4 @@
1
+ import { PromiseExecutor } from '@nx/devkit';
2
+ import { ExecutorSchema } from './schema';
3
+ declare const executor: PromiseExecutor<ExecutorSchema>;
4
+ export default executor;
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ const child_process_1 = require("child_process");
5
+ const executor = (options, context) => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
6
+ const { envKey, envPath, ormConfigPath, runOrRevert } = options;
7
+ try {
8
+ (0, child_process_1.execSync)(`export ${envKey}=${envPath} && npm run typeorm -- -d ${ormConfigPath} migration:${runOrRevert} -t=false`, { stdio: 'inherit' });
9
+ return {
10
+ success: true,
11
+ };
12
+ }
13
+ catch (error) {
14
+ return {
15
+ success: false,
16
+ };
17
+ }
18
+ });
19
+ exports.default = executor;
20
+ //# sourceMappingURL=executor.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"executor.js","sourceRoot":"","sources":["../../../../../onix/src/executors/db/executor.ts"],"names":[],"mappings":";;;AAEA,iDAAyC;AAEzC,MAAM,QAAQ,GAAoC,CAChD,OAAuB,EACvB,OAAwB,EACxB,EAAE;IACF,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,aAAa,EAAE,WAAW,EAAE,GAAG,OAAO,CAAC;IAGhE,IAAI,CAAC;QACH,IAAA,wBAAQ,EAAC,UAAU,MAAM,IAAI,OAAO,6BAA6B,aAAa,cAAc,WAAW,WAAW,EAAE,EAAE,KAAK,EAAE,SAAS,EAAE,CAAC,CAAC;QAE1I,OAAO;YACL,OAAO,EAAE,IAAI;SACd,CAAC;IACJ,CAAC;IAAC,OAAO,KAAK,EAAE,CAAC;QACf,OAAO;YACL,OAAO,EAAE,KAAK;SACf,CAAC;IACJ,CAAC;AACH,CAAC,CAAA,CAAC;AAEF,kBAAe,QAAQ,CAAC"}
@@ -0,0 +1,6 @@
1
+ export interface ExecutorSchema {
2
+ envPath: string;
3
+ envKey: string;
4
+ ormConfigPath: string;
5
+ runOrRevert: string;
6
+ } // eslint-disable-line
@@ -0,0 +1,28 @@
1
+ {
2
+ "$schema": "https://json-schema.org/schema",
3
+ "version": 2,
4
+ "title": "Db executor",
5
+ "description": "",
6
+ "type": "object",
7
+ "properties": {
8
+ "runOrRevert": {
9
+ "type": "string",
10
+ "description": "TypeORM CLI command: 'run' or 'revert'"
11
+ },
12
+ "envPath": {
13
+ "type": "string",
14
+ "description": "Path and name of the .env file to load"
15
+ },
16
+ "envKey": {
17
+ "type": "string",
18
+ "description": "Name of the environment variable that points to the location of the envFile"
19
+ },
20
+ "ormConfigPath": {
21
+ "type": "string",
22
+ "description": "Path and name of the ormconfig"
23
+ }
24
+ },
25
+ "required": [
26
+ "envPath", "envKey", "ormConfigPath"
27
+ ]
28
+ }
@@ -0,0 +1,4 @@
1
+ import { PromiseExecutor } from '@nx/devkit';
2
+ import { ExecutorSchema } from './schema';
3
+ declare const executor: PromiseExecutor<ExecutorSchema>;
4
+ export default executor;
@@ -0,0 +1,27 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ const devkit_1 = require("@nx/devkit");
5
+ const child_process_1 = require("child_process");
6
+ const executor = (options, context) => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
7
+ const { envPath, ecr, prefix, profile } = options;
8
+ // TODO: THROW IF AWS PROFILE HAS SPECIFIED PROFILE
9
+ try {
10
+ const webProjectName = context.projectName.replace('api', 'web');
11
+ const apiProjectPath = context.projectName.split('-').join('/').replace('app', 'apps').replace('appss', 'apps');
12
+ const webProjectPath = apiProjectPath.replace('api', 'web').replace('app', 'apps').replace('appss', 'apps');
13
+ const command = `export OSO_ENV=${envPath} && oso DeployImageAndUi -a ${context.projectName} -t production -p ${profile} -r us-east-2 -e ${ecr} -o ${apiProjectPath} -u ${webProjectName} -d dist/${webProjectPath} -f docker/prod/api/Dockerfile -g asdf && aws ecs update-service --cluster ${prefix}-cluster --service ${prefix}-service --force-new-deployment --profile ${profile} --region us-east-2`;
14
+ devkit_1.logger.info(command);
15
+ (0, child_process_1.execSync)(command, { stdio: 'inherit' });
16
+ return {
17
+ success: true,
18
+ };
19
+ }
20
+ catch (error) {
21
+ return {
22
+ success: false,
23
+ };
24
+ }
25
+ });
26
+ exports.default = executor;
27
+ //# sourceMappingURL=executor.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"executor.js","sourceRoot":"","sources":["../../../../../onix/src/executors/deploy/executor.ts"],"names":[],"mappings":";;;AAAA,uCAAsE;AAEtE,iDAAyC;AAEzC,MAAM,QAAQ,GAAoC,CAChD,OAAuB,EACvB,OAAwB,EACxB,EAAE;IACF,MAAM,EAAE,OAAO,EAAE,GAAG,EAAE,MAAM,EAAE,OAAO,EAAE,GAAG,OAAO,CAAC;IAElD,mDAAmD;IAEnD,IAAI,CAAC;QACH,MAAM,cAAc,GAAG,OAAO,CAAC,WAAY,CAAC,OAAO,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC;QAClE,MAAM,cAAc,GAAG,OAAO,CAAC,WAAY,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,OAAO,CAAC,KAAK,EAAE,MAAM,CAAC,CAAC,OAAO,CAAC,OAAO,EAAE,MAAM,CAAC,CAAC;QACjH,MAAM,cAAc,GAAG,cAAc,CAAC,OAAO,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC,OAAO,CAAC,KAAK,EAAE,MAAM,CAAC,CAAC,OAAO,CAAC,OAAO,EAAE,MAAM,CAAC,CAAC;QAE5G,MAAM,OAAO,GAAG,kBAAkB,OAAO,+BAA+B,OAAO,CAAC,WAAW,qBAAqB,OAAO,oBAAoB,GAAG,OAAO,cAAc,OAAO,cAAc,YAAY,cAAc,8EAA8E,MAAM,sBAAsB,MAAM,6CAA6C,OAAO,qBAAqB,CAAC;QAE5Y,eAAM,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAErB,IAAA,wBAAQ,EAAC,OAAO,EAAE,EAAE,KAAK,EAAE,SAAS,EAAE,CAAC,CAAC;QAExC,OAAO;YACL,OAAO,EAAE,IAAI;SACd,CAAC;IACJ,CAAC;IAAC,OAAO,KAAK,EAAE,CAAC;QACf,OAAO;YACL,OAAO,EAAE,KAAK;SACf,CAAC;IACJ,CAAC;AACH,CAAC,CAAA,CAAC;AAEF,kBAAe,QAAQ,CAAC"}
@@ -0,0 +1,6 @@
1
+ export interface ExecutorSchema {
2
+ envPath: string;
3
+ ecr: string;
4
+ prefix: string;
5
+ profile: string;
6
+ } // eslint-disable-line
@@ -0,0 +1,28 @@
1
+ {
2
+ "$schema": "https://json-schema.org/schema",
3
+ "version": 2,
4
+ "title": "Db executor",
5
+ "description": "",
6
+ "type": "object",
7
+ "properties": {
8
+ "envPath": {
9
+ "type": "string",
10
+ "description": "Path and name of the .env file to load"
11
+ },
12
+ "ecr": {
13
+ "type": "string",
14
+ "description": "Name of the ECR repository and tag (conventionally separated by a colon)"
15
+ },
16
+ "prefix": {
17
+ "type": "string",
18
+ "description": "Common prefix of the AWS ECS cluster and service"
19
+ },
20
+ "profile": {
21
+ "type": "string",
22
+ "description": "Either 'ivimdev' or 'ivimprod' (either of which must be defined in the ~/.aws/credentials file"
23
+ }
24
+ },
25
+ "required": [
26
+ "envPath", "ecr", "prefix", "profile"
27
+ ]
28
+ }
@@ -0,0 +1,4 @@
1
+ import { PromiseExecutor } from '@nx/devkit';
2
+ import { ExecutorSchema } from './schema';
3
+ declare const executor: PromiseExecutor<ExecutorSchema>;
4
+ export default executor;
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ const devkit_1 = require("@nx/devkit");
5
+ const child_process_1 = require("child_process");
6
+ const executor = (options, context) => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
7
+ const { envPath, ecr, port } = options;
8
+ const localPort = (Number(port) + 2000);
9
+ try {
10
+ const command = `open http://localhost:${localPort} & docker run -p ${localPort}:${port} --env="PORT=${port}" --env-file "${envPath}" "${ecr}"`;
11
+ devkit_1.logger.info(command);
12
+ (0, child_process_1.execSync)(command);
13
+ return {
14
+ success: true,
15
+ };
16
+ }
17
+ catch (error) {
18
+ return {
19
+ success: false,
20
+ };
21
+ }
22
+ });
23
+ exports.default = executor;
24
+ //# sourceMappingURL=executor.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"executor.js","sourceRoot":"","sources":["../../../../../onix/src/executors/docker/executor.ts"],"names":[],"mappings":";;;AAAA,uCAAsE;AAEtE,iDAAsD;AAEtD,MAAM,QAAQ,GAAoC,CAChD,OAAuB,EACvB,OAAwB,EACxB,EAAE;IACF,MAAM,EAAE,OAAO,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,OAAO,CAAC;IACvC,MAAM,SAAS,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,CAAC;IACxC,IAAI,CAAC;QACH,MAAM,OAAO,GAAG,yBAAyB,SAAS,oBAAoB,SAAS,IAAI,IAAI,gBAAgB,IAAI,iBAAiB,OAAO,MAAM,GAAG,GAAG,CAAC;QAEhJ,eAAM,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAErB,IAAA,wBAAQ,EAAC,OAAO,CAAC,CAAC;QAElB,OAAO;YACL,OAAO,EAAE,IAAI;SACd,CAAC;IACJ,CAAC;IAAC,OAAO,KAAK,EAAE,CAAC;QACf,OAAO;YACL,OAAO,EAAE,KAAK;SACf,CAAC;IACJ,CAAC;AACH,CAAC,CAAA,CAAC;AAEF,kBAAe,QAAQ,CAAC"}
@@ -0,0 +1,5 @@
1
+ export interface ExecutorSchema {
2
+ envPath: string;
3
+ ecr: string;
4
+ port: number;
5
+ } // eslint-disable-line
@@ -0,0 +1,24 @@
1
+ {
2
+ "$schema": "https://json-schema.org/schema",
3
+ "version": 2,
4
+ "title": "Db executor",
5
+ "description": "",
6
+ "type": "object",
7
+ "properties": {
8
+ "envPath": {
9
+ "type": "string",
10
+ "description": "Path and name of the .env file to load"
11
+ },
12
+ "ecr": {
13
+ "type": "string",
14
+ "description": "Name of the ECR repository and tag (conventionally separated by a colon)"
15
+ },
16
+ "port": {
17
+ "type": "string",
18
+ "description": "Port docker port to bind to localhost"
19
+ }
20
+ },
21
+ "required": [
22
+ "envPath", "ecr", "port"
23
+ ]
24
+ }
@@ -0,0 +1,4 @@
1
+ import { PromiseExecutor } from '@nx/devkit';
2
+ import { ExecutorSchema } from './schema';
3
+ declare const runExecutor: PromiseExecutor<ExecutorSchema>;
4
+ export default runExecutor;
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ const child_process_1 = require("child_process");
5
+ const runExecutor = (_a) => tslib_1.__awaiter(void 0, [_a], void 0, function* ({ moniker }) {
6
+ try {
7
+ (0, child_process_1.execSync)(`rm -rf libs/axios/${moniker}/src/lib`, { stdio: 'inherit' });
8
+ (0, child_process_1.execSync)(`mkdir -p libs/axios/${moniker}`, { stdio: 'inherit' });
9
+ (0, child_process_1.execSync)(`docker run --rm -v .:/local openapitools/openapi-generator-cli:v6.3.0 generate -i local/api-dox/app-api-${moniker}.json -g typescript-axios -o local/libs/axios/${moniker}/src/lib`, { stdio: 'inherit' });
10
+ return {
11
+ success: true,
12
+ };
13
+ }
14
+ catch (error) {
15
+ return { success: false };
16
+ }
17
+ });
18
+ exports.default = runExecutor;
19
+ //# sourceMappingURL=executor.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"executor.js","sourceRoot":"","sources":["../../../../../onix/src/executors/gen/executor.ts"],"names":[],"mappings":";;;AAEA,iDAAyC;AAEzC,MAAM,WAAW,GAAoC,KAAoB,EAAE,oDAAf,EAAE,OAAO,EAAE;IACrE,IAAI,CAAC;QACH,IAAA,wBAAQ,EAAC,qBAAqB,OAAO,UAAU,EAAE,EAAE,KAAK,EAAE,SAAS,EAAE,CAAC,CAAC;QACvE,IAAA,wBAAQ,EAAC,uBAAuB,OAAO,EAAE,EAAE,EAAE,KAAK,EAAE,SAAS,EAAE,CAAC,CAAC;QACjE,IAAA,wBAAQ,EAAC,2GAA2G,OAAO,iDAAiD,OAAO,UAAU,EAAE,EAAE,KAAK,EAAE,SAAS,EAAE,CAAC,CAAC;QAErN,OAAO;YACL,OAAO,EAAE,IAAI;SACd,CAAC;IACJ,CAAC;IAAC,OAAO,KAAK,EAAE,CAAC;QACf,OAAO,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;IAC5B,CAAC;AACH,CAAC,CAAA,CAAC;AAEF,kBAAe,WAAW,CAAC"}
@@ -0,0 +1,3 @@
1
+ export interface ExecutorSchema {
2
+ moniker: string;
3
+ } // eslint-disable-line
@@ -0,0 +1,14 @@
1
+ {
2
+ "$schema": "https://json-schema.org/schema",
3
+ "version": 2,
4
+ "title": "Gen executor",
5
+ "description": "",
6
+ "type": "object",
7
+ "properties": {
8
+ "moniker": {
9
+ "type": "string",
10
+ "description": "Lowercase single-word identifier used to consistently distinguish related projects and libraries"
11
+ }
12
+ },
13
+ "required": []
14
+ }
@@ -0,0 +1,4 @@
1
+ import { PromiseExecutor } from '@nx/devkit';
2
+ import { ExecutorSchema } from './schema';
3
+ declare const runExecutor: PromiseExecutor<ExecutorSchema>;
4
+ export default runExecutor;
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ const child_process_1 = require("child_process");
5
+ const runExecutor = (options, context) => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
6
+ console.log('Running custom serve executor');
7
+ const { envKey, envPath } = options;
8
+ try {
9
+ const inspectStatement = options.port ? `--port=${options.port}` : '';
10
+ const command = `export ${envKey}=${envPath} && npx nx run ${context.projectName}:serve ${inspectStatement}`;
11
+ console.log(command);
12
+ (0, child_process_1.execSync)(command, { stdio: 'inherit' });
13
+ return {
14
+ success: true,
15
+ };
16
+ }
17
+ catch (error) {
18
+ return {
19
+ success: false,
20
+ };
21
+ }
22
+ });
23
+ exports.default = runExecutor;
24
+ //# sourceMappingURL=executor.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"executor.js","sourceRoot":"","sources":["../../../../../onix/src/executors/local/executor.ts"],"names":[],"mappings":";;;AAIA,iDAAyC;AAGzC,MAAM,WAAW,GAAoC,CACnD,OAAuB,EACvB,OAAwB,EACxB,EAAE;IACF,OAAO,CAAC,GAAG,CAAC,+BAA+B,CAAC,CAAC;IAE7C,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,GAAG,OAAO,CAAC;IAEpC,IAAI,CAAC;QACH,MAAM,gBAAgB,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,UAAU,OAAO,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;QACtE,MAAM,OAAO,GAAG,UAAU,MAAM,IAAI,OAAO,kBAAkB,OAAO,CAAC,WAAW,UAAU,gBAAgB,EAAE,CAAC;QAC7G,OAAO,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC;QACrB,IAAA,wBAAQ,EAAC,OAAO,EAAE,EAAE,KAAK,EAAE,SAAS,EAAE,CAAC,CAAC;QAExC,OAAO;YACL,OAAO,EAAE,IAAI;SACd,CAAC;IACJ,CAAC;IAAC,OAAO,KAAK,EAAE,CAAC;QACf,OAAO;YACL,OAAO,EAAE,KAAK;SACf,CAAC;IACJ,CAAC;AACH,CAAC,CAAA,CAAA;AAED,kBAAe,WAAW,CAAC"}
@@ -0,0 +1,5 @@
1
+ export interface ExecutorSchema {
2
+ envPath: string;
3
+ envKey: string;
4
+ port?: number;
5
+ } // eslint-disable-line
@@ -0,0 +1,25 @@
1
+ {
2
+ "$schema": "https://json-schema.org/schema",
3
+ "version": 2,
4
+ "title": "Local serve executor",
5
+ "description": "",
6
+ "type": "object",
7
+ "properties": {
8
+ "envPath": {
9
+ "type": "string",
10
+ "description": "Path and name of the .env file to load"
11
+ },
12
+ "envKey": {
13
+ "type": "string",
14
+ "description": "Name of the environment variable that points to the location of the envFile"
15
+ },
16
+ "debugPort": {
17
+ "type": "number",
18
+ "description": "Debug port"
19
+ }
20
+ },
21
+ "required": [
22
+ "envPath",
23
+ "envKey"
24
+ ]
25
+ }
@@ -0,0 +1,4 @@
1
+ import { PromiseExecutor } from '@nx/devkit';
2
+ import { ExecutorSchema } from './schema';
3
+ declare const runExecutor: PromiseExecutor<ExecutorSchema>;
4
+ export default runExecutor;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ const devkit_1 = require("@nx/devkit");
5
+ const child_process_1 = require("child_process");
6
+ const get_project_path_from_name_function_1 = require("../../utils/get-project-path-from-name.function");
7
+ const runExecutor = (options, context) => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
8
+ try {
9
+ const command = `playwright test -c ${(0, get_project_path_from_name_function_1.getProjectPathFromName)(context.projectName)}/playwright.config.ts`;
10
+ devkit_1.logger.info(command);
11
+ (0, child_process_1.execSync)(command, { stdio: 'inherit' });
12
+ return {
13
+ success: true,
14
+ };
15
+ }
16
+ catch (error) {
17
+ return { success: false };
18
+ }
19
+ });
20
+ exports.default = runExecutor;
21
+ //# sourceMappingURL=executor.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"executor.js","sourceRoot":"","sources":["../../../../../onix/src/executors/playwright/executor.ts"],"names":[],"mappings":";;;AAAA,uCAAqD;AAErD,iDAAyC;AACzC,yGAAyF;AAEzF,MAAM,WAAW,GAAoC,CAAO,OAAO,EAAE,OAAO,EAAE,EAAE;IAC9E,IAAI,CAAC;QACH,MAAM,OAAO,GAAG,sBAAsB,IAAA,4DAAsB,EAAC,OAAO,CAAC,WAAY,CAAC,uBAAuB,CAAC;QAE1G,eAAM,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAErB,IAAA,wBAAQ,EAAC,OAAO,EAAE,EAAE,KAAK,EAAE,SAAS,EAAE,CAAC,CAAC;QAExC,OAAO;YACL,OAAO,EAAE,IAAI;SACd,CAAC;IACJ,CAAC;IAAC,OAAO,KAAK,EAAE,CAAC;QACf,OAAO,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;IAC5B,CAAC;AACH,CAAC,CAAA,CAAC;AAEF,kBAAe,WAAW,CAAC"}
@@ -0,0 +1,2 @@
1
+ export interface ExecutorSchema {
2
+ } // eslint-disable-line
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/schema",
3
3
  "version": 2,
4
- "title": "Xxxx executor",
4
+ "title": "Gen executor",
5
5
  "description": "",
6
6
  "type": "object",
7
- "properties": {},
7
+ "properties": {
8
+ },
8
9
  "required": []
9
10
  }
@@ -0,0 +1,4 @@
1
+ import { PromiseExecutor } from '@nx/devkit';
2
+ import { ExecutorSchema } from './schema';
3
+ declare const executor: PromiseExecutor<ExecutorSchema>;
4
+ export default executor;
@@ -0,0 +1,42 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ const devkit_1 = require("@nx/devkit");
5
+ const build_1 = require("../../utils/build");
6
+ const path_1 = require("path");
7
+ const child_process_1 = require("child_process");
8
+ const executor = (options, context) => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
9
+ const {} = options;
10
+ try {
11
+ const projectRoot = context.projectsConfigurations.projects[context.projectName].root;
12
+ const mainFilePath = `${projectRoot}/src/main.ts`;
13
+ const outfile = `${mainFilePath.replace('.ts', '.js').replace('src', 'extension')}`;
14
+ const vsixPath = outfile.replace('.js', '.vsix');
15
+ const cwd = (0, path_1.resolve)(projectRoot);
16
+ const distVsixPath = 'main.vsix';
17
+ devkit_1.logger.log({ cwd, outfile, vsixPath, projectRoot });
18
+ yield (0, build_1.build)(mainFilePath, outfile);
19
+ (0, child_process_1.execSync)(`vsce package --allow-missing-repository -o ${distVsixPath}`, { cwd, stdio: 'inherit' });
20
+ try {
21
+ const installedExtensions = (0, child_process_1.execSync)('code --list-extensions').toString().split('\n').map(_ => _.trim()).filter(Boolean);
22
+ if (installedExtensions.includes('undefined_publisher.ivsc')) {
23
+ (0, child_process_1.execSync)(`code --uninstall-extension undefined_publisher.ivsc`, { stdio: 'inherit' });
24
+ }
25
+ (0, child_process_1.execSync)(`code --install-extension ${distVsixPath}`, { cwd, stdio: 'inherit' });
26
+ devkit_1.logger.log(`built ${context.projectName} as VSIX to ${distVsixPath} and installed in VS Code`);
27
+ }
28
+ catch (error) {
29
+ devkit_1.logger.error('unable to automatically install extension because "code" not sourced in terminal');
30
+ }
31
+ return {
32
+ success: true,
33
+ };
34
+ }
35
+ catch (error) {
36
+ return {
37
+ success: false,
38
+ };
39
+ }
40
+ });
41
+ exports.default = executor;
42
+ //# sourceMappingURL=executor.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"executor.js","sourceRoot":"","sources":["../../../../../onix/src/executors/vscode/executor.ts"],"names":[],"mappings":";;;AAAA,uCAAsE;AAEtE,6CAA0C;AAC1C,+BAA+B;AAC/B,iDAAyC;AAEzC,MAAM,QAAQ,GAAoC,CAChD,OAAuB,EACvB,OAAwB,EACxB,EAAE;IACF,MAAM,EAAG,GAAG,OAAO,CAAC;IAEpB,IAAI,CAAC;QACH,MAAM,WAAW,GAAG,OAAO,CAAC,sBAAsB,CAAC,QAAQ,CAAC,OAAO,CAAC,WAAY,CAAC,CAAC,IAAI,CAAC;QACvF,MAAM,YAAY,GAAG,GAAG,WAAW,cAAc,CAAC;QAClD,MAAM,OAAO,GAAG,GAAG,YAAY,CAAC,OAAO,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC,OAAO,CAAC,KAAK,EAAE,WAAW,CAAC,EAAE,CAAC;QACpF,MAAM,QAAQ,GAAG,OAAO,CAAC,OAAO,CAAC,KAAK,EAAE,OAAO,CAAC,CAAC;QACjD,MAAM,GAAG,GAAG,IAAA,cAAO,EAAC,WAAW,CAAC,CAAC;QACjC,MAAM,YAAY,GAAG,WAAW,CAAC;QAEjC,eAAM,CAAC,GAAG,CAAC,EAAE,GAAG,EAAE,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,CAAC,CAAA;QAEnD,MAAM,IAAA,aAAK,EAAC,YAAY,EAAE,OAAO,CAAC,CAAC;QAEnC,IAAA,wBAAQ,EAAC,8CAA8C,YAAY,EAAE,EAAE,EAAE,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,CAAC,CAAC;QAElG,IAAI,CAAC;YACH,MAAM,mBAAmB,GAAG,IAAA,wBAAQ,EAAC,wBAAwB,CAAC,CAAC,QAAQ,EAAE,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;YAEzH,IAAI,mBAAmB,CAAC,QAAQ,CAAC,0BAA0B,CAAC,EAAE,CAAC;gBAC7D,IAAA,wBAAQ,EAAC,qDAAqD,EAAE,EAAE,KAAK,EAAE,SAAS,EAAE,CAAC,CAAC;YACxF,CAAC;YAED,IAAA,wBAAQ,EAAC,4BAA4B,YAAY,EAAE,EAAE,EAAE,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,CAAC,CAAC;YAEhF,eAAM,CAAC,GAAG,CAAC,SAAS,OAAO,CAAC,WAAW,eAAe,YAAY,2BAA2B,CAAC,CAAC;QACjG,CAAC;QAAC,OAAO,KAAK,EAAE,CAAC;YACf,eAAM,CAAC,KAAK,CAAC,kFAAkF,CAAC,CAAC;QACnG,CAAC;QAED,OAAO;YACL,OAAO,EAAE,IAAI;SACd,CAAC;IACJ,CAAC;IAAC,OAAO,KAAK,EAAE,CAAC;QACf,OAAO;YACL,OAAO,EAAE,KAAK;SACf,CAAC;IACJ,CAAC;AACH,CAAC,CAAA,CAAC;AAEF,kBAAe,QAAQ,CAAC"}
@@ -0,0 +1,2 @@
1
+ export interface ExecutorSchema {
2
+ } // eslint-disable-line
@@ -0,0 +1,11 @@
1
+ {
2
+ "$schema": "https://json-schema.org/schema",
3
+ "version": 2,
4
+ "title": "VS Code executor",
5
+ "description": "",
6
+ "type": "object",
7
+ "properties": {
8
+ },
9
+ "required": [
10
+ ]
11
+ }
package/src/index.d.ts CHANGED
@@ -0,0 +1,3 @@
1
+ export { playwrightConfig } from './utils/playwright.config';
2
+ export * from './types/onix-config.type';
3
+ export * from './plugins/plugin';
package/src/index.js CHANGED
@@ -1 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.playwrightConfig = void 0;
4
+ const tslib_1 = require("tslib");
5
+ var playwright_config_1 = require("./utils/playwright.config");
6
+ Object.defineProperty(exports, "playwrightConfig", { enumerable: true, get: function () { return playwright_config_1.playwrightConfig; } });
7
+ tslib_1.__exportStar(require("./types/onix-config.type"), exports);
8
+ tslib_1.__exportStar(require("./plugins/plugin"), exports);
1
9
  //# sourceMappingURL=index.js.map
package/src/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../onix/src/index.ts"],"names":[],"mappings":""}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../onix/src/index.ts"],"names":[],"mappings":";;;;AAAA,+DAA6D;AAApD,qHAAA,gBAAgB,OAAA;AAEzB,mEAAyC;AAEzC,2DAAiC"}
@@ -0,0 +1,12 @@
1
+ import { CreateDependencies, CreateNodes, CreateNodesV2 } from '@nx/devkit';
2
+ export type TOnixPluginOptions = {
3
+ buildTargetName?: string;
4
+ testTargetName?: string;
5
+ serveTargetName?: string;
6
+ previewTargetName?: string;
7
+ serveStaticTargetName?: string;
8
+ typecheckTargetName?: string;
9
+ };
10
+ export declare const createDependencies: CreateDependencies;
11
+ export declare const createNodesV2: CreateNodesV2<TOnixPluginOptions>;
12
+ export declare const createNodes: CreateNodes<TOnixPluginOptions>;
@@ -0,0 +1,152 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.createNodes = exports.createNodesV2 = exports.createDependencies = void 0;
4
+ const tslib_1 = require("tslib");
5
+ const devkit_1 = require("@nx/devkit");
6
+ const path_1 = require("path");
7
+ const get_named_inputs_1 = require("@nx/devkit/src/utils/get-named-inputs");
8
+ const fs_1 = require("fs");
9
+ const calculate_hash_for_create_nodes_1 = require("@nx/devkit/src/utils/calculate-hash-for-create-nodes");
10
+ const cache_directory_1 = require("nx/src/utils/cache-directory");
11
+ const js_1 = require("@nx/js");
12
+ const file_hasher_1 = require("nx/src/hasher/file-hasher");
13
+ const pmc = (0, devkit_1.getPackageManagerCommand)();
14
+ function readTargetsCache(cachePath) {
15
+ return (0, fs_1.existsSync)(cachePath) ? (0, devkit_1.readJsonFile)(cachePath) : {};
16
+ }
17
+ function writeTargetsToCache(cachePath, results) {
18
+ (0, devkit_1.writeJsonFile)(cachePath, results || {});
19
+ }
20
+ const createDependencies = () => {
21
+ return [];
22
+ };
23
+ exports.createDependencies = createDependencies;
24
+ const onixConfigGlob = '**/onix.config.{js,ts,mjs,mts,cjs,cts}';
25
+ exports.createNodesV2 = [
26
+ onixConfigGlob,
27
+ (configFilePaths_1, ...args_1) => tslib_1.__awaiter(void 0, [configFilePaths_1, ...args_1], void 0, function* (configFilePaths, options = {}, context) {
28
+ const optionsHash = (0, file_hasher_1.hashObject)(options);
29
+ const cachePath = (0, path_1.join)(cache_directory_1.workspaceDataDirectory, `vite-${optionsHash}.hash`);
30
+ const targetsCache = readTargetsCache(cachePath);
31
+ try {
32
+ return yield (0, devkit_1.createNodesFromFiles)((configFile, options = {}, context) => createNodesInternal(configFile, options, context, targetsCache), configFilePaths, options, context);
33
+ }
34
+ finally {
35
+ writeTargetsToCache(cachePath, targetsCache);
36
+ }
37
+ }),
38
+ ];
39
+ exports.createNodes = [
40
+ onixConfigGlob,
41
+ (configFilePath, options, context) => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
42
+ devkit_1.logger.warn('`createNodes` is deprecated. Update your plugin to utilize createNodesV2 instead. In Nx 20, this will change to the createNodesV2 API.');
43
+ return createNodesInternal(configFilePath, options = {}, context, {});
44
+ }),
45
+ ];
46
+ function createNodesInternal(configFilePath, options, context, targetsCache) {
47
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
48
+ var _a;
49
+ const projectRoot = (0, path_1.dirname)(configFilePath);
50
+ const siblingFiles = (0, fs_1.readdirSync)((0, path_1.join)(context.workspaceRoot, projectRoot));
51
+ if (!siblingFiles.includes('package.json') &&
52
+ !siblingFiles.includes('project.json')) {
53
+ return {};
54
+ }
55
+ const normalizedOptions = normalizeOptions(options);
56
+ const hash = (yield (0, calculate_hash_for_create_nodes_1.calculateHashForCreateNodes)(projectRoot, normalizedOptions, context, [(0, js_1.getLockFileName)((0, devkit_1.detectPackageManager)(context.workspaceRoot))])) + configFilePath;
57
+ const onixTargets = yield buildOnixTargets(configFilePath, projectRoot, normalizedOptions, context);
58
+ (_a = targetsCache[hash]) !== null && _a !== void 0 ? _a : (targetsCache[hash] = onixTargets);
59
+ const { targets, metadata } = targetsCache[hash];
60
+ const project = {
61
+ root: projectRoot,
62
+ targets,
63
+ metadata,
64
+ };
65
+ return {
66
+ projects: {
67
+ [projectRoot]: project,
68
+ },
69
+ };
70
+ });
71
+ }
72
+ function buildOnixTargets(configFilePath, projectRoot, options, context) {
73
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
74
+ const absoluteConfigFilePath = (0, devkit_1.joinPathFragments)(context.workspaceRoot, configFilePath);
75
+ const projectJsonPath = (0, path_1.join)(context.workspaceRoot, projectRoot, 'project.json');
76
+ const projectJson = (0, devkit_1.parseJson)((0, fs_1.readFileSync)(projectJsonPath, 'utf-8'));
77
+ const targets = {};
78
+ devkit_1.logger.warn(absoluteConfigFilePath);
79
+ const onixConfig = require(absoluteConfigFilePath);
80
+ devkit_1.logger.warn(onixConfig);
81
+ const namedInputs = (0, get_named_inputs_1.getNamedInputs)(projectRoot, context);
82
+ Object.entries(onixConfig.environments || {}).forEach(([environment, config]) => {
83
+ const buildTargetName = `serve-${environment}`;
84
+ const { envPath, envKey } = config;
85
+ targets[buildTargetName] = {
86
+ command: `export ${envKey}=${envPath} && npx nx run ${projectJson.name}:serve`,
87
+ options: { cwd: process.cwd() },
88
+ cache: true,
89
+ dependsOn: [`^${buildTargetName}`],
90
+ inputs: [
91
+ ...('production' in namedInputs
92
+ ? ['production', '^production']
93
+ : ['default', '^default']),
94
+ {
95
+ externalDependencies: [],
96
+ },
97
+ ],
98
+ outputs: [],
99
+ metadata: {
100
+ technologies: ['what goes here for technologies'],
101
+ description: `Run the thing`,
102
+ // help: {
103
+ // command: `${pmc.exec} vite build --help`,
104
+ // example: {
105
+ // options: {
106
+ // sourcemap: true,
107
+ // manifest: 'manifest.json',
108
+ // },
109
+ // },
110
+ // },
111
+ },
112
+ };
113
+ });
114
+ const metadata = {};
115
+ return { targets, metadata };
116
+ });
117
+ }
118
+ function normalizeOutputPath(outputPath, projectRoot, workspaceRoot, path) {
119
+ if (!outputPath) {
120
+ if (projectRoot === '.') {
121
+ return `{projectRoot}/${path}`;
122
+ }
123
+ else {
124
+ return `{workspaceRoot}/${path}/{projectRoot}`;
125
+ }
126
+ }
127
+ else {
128
+ if ((0, path_1.isAbsolute)(outputPath)) {
129
+ return `{workspaceRoot}/${(0, path_1.relative)(workspaceRoot, outputPath)}`;
130
+ }
131
+ else {
132
+ if (outputPath.startsWith('..')) {
133
+ return (0, path_1.join)('{workspaceRoot}', (0, path_1.join)(projectRoot, outputPath));
134
+ }
135
+ else {
136
+ return (0, path_1.join)('{projectRoot}', outputPath);
137
+ }
138
+ }
139
+ }
140
+ }
141
+ function normalizeOptions(options) {
142
+ var _a, _b, _c, _d, _e, _f;
143
+ options !== null && options !== void 0 ? options : (options = {});
144
+ (_a = options.buildTargetName) !== null && _a !== void 0 ? _a : (options.buildTargetName = 'build');
145
+ (_b = options.serveTargetName) !== null && _b !== void 0 ? _b : (options.serveTargetName = 'serve');
146
+ (_c = options.previewTargetName) !== null && _c !== void 0 ? _c : (options.previewTargetName = 'preview');
147
+ (_d = options.testTargetName) !== null && _d !== void 0 ? _d : (options.testTargetName = 'test');
148
+ (_e = options.serveStaticTargetName) !== null && _e !== void 0 ? _e : (options.serveStaticTargetName = 'serve-static');
149
+ (_f = options.typecheckTargetName) !== null && _f !== void 0 ? _f : (options.typecheckTargetName = 'typecheck');
150
+ return options;
151
+ }
152
+ //# sourceMappingURL=plugin.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"plugin.js","sourceRoot":"","sources":["../../../../onix/src/plugins/plugin.ts"],"names":[],"mappings":";;;;AAAA,uCAeoB;AACpB,+BAA2D;AAC3D,4EAAuE;AACvE,2BAA2D;AAC3D,0GAAmG;AACnG,kEAAsE;AACtE,+BAAyC;AACzC,2DAAuD;AAIvD,MAAM,GAAG,GAAG,IAAA,iCAAwB,GAAE,CAAC;AAavC,SAAS,gBAAgB,CAAC,SAAiB;IACzC,OAAO,IAAA,eAAU,EAAC,SAAS,CAAC,CAAC,CAAC,CAAC,IAAA,qBAAY,EAAC,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC;AAC9D,CAAC;AAED,SAAS,mBAAmB,CAAC,SAAS,EAAE,OAAsC;IAC5E,IAAA,sBAAa,EAAC,SAAS,EAAE,OAAO,IAAI,EAAE,CAAC,CAAC;AAC1C,CAAC;AAEM,MAAM,kBAAkB,GAAuB,GAAG,EAAE;IACzD,OAAO,EAAE,CAAC;AACZ,CAAC,CAAC;AAFW,QAAA,kBAAkB,sBAE7B;AAEF,MAAM,cAAc,GAAG,wCAAwC,CAAC;AAEnD,QAAA,aAAa,GAAsC;IAC9D,cAAc;IACd,+BAA+C,EAAE,8EAA1C,eAAe,EAAE,OAAO,GAAG,EAAE,EAAE,OAAO;QAC3C,MAAM,WAAW,GAAG,IAAA,wBAAU,EAAC,OAAO,CAAC,CAAC;QACxC,MAAM,SAAS,GAAG,IAAA,WAAI,EAAC,wCAAsB,EAAE,QAAQ,WAAW,OAAO,CAAC,CAAC;QAC3E,MAAM,YAAY,GAAG,gBAAgB,CAAC,SAAS,CAAC,CAAC;QACjD,IAAI,CAAC;YACH,OAAO,MAAM,IAAA,6BAAoB,EAC/B,CAAC,UAAU,EAAE,OAAO,GAAG,EAAE,EAAE,OAAO,EAAE,EAAE,CACpC,mBAAmB,CAAC,UAAU,EAAE,OAAO,EAAE,OAAO,EAAE,YAAY,CAAC,EACjE,eAAe,EACf,OAAO,EACP,OAAO,CACR,CAAC;QACJ,CAAC;gBAAS,CAAC;YACT,mBAAmB,CAAC,SAAS,EAAE,YAAY,CAAC,CAAC;QAC/C,CAAC;IACH,CAAC,CAAA;CACF,CAAC;AAEW,QAAA,WAAW,GAAoC;IAC1D,cAAc;IACd,CAAO,cAAc,EAAE,OAAO,EAAE,OAAO,EAAE,EAAE;QACzC,eAAM,CAAC,IAAI,CACT,wIAAwI,CACzI,CAAC;QACF,OAAO,mBAAmB,CAAC,cAAc,EAAE,OAAO,GAAG,EAAE,EAAE,OAAO,EAAE,EAAE,CAAC,CAAC;IACxE,CAAC,CAAA;CACF,CAAC;AAEF,SAAe,mBAAmB,CAChC,cAAsB,EACtB,OAA2B,EAC3B,OAA2B,EAC3B,YAA0C;;;QAE1C,MAAM,WAAW,GAAG,IAAA,cAAO,EAAC,cAAc,CAAC,CAAC;QAC5C,MAAM,YAAY,GAAG,IAAA,gBAAW,EAAC,IAAA,WAAI,EAAC,OAAO,CAAC,aAAa,EAAE,WAAW,CAAC,CAAC,CAAC;QAC3E,IACE,CAAC,YAAY,CAAC,QAAQ,CAAC,cAAc,CAAC;YACtC,CAAC,YAAY,CAAC,QAAQ,CAAC,cAAc,CAAC,EACtC,CAAC;YACD,OAAO,EAAE,CAAC;QACZ,CAAC;QAED,MAAM,iBAAiB,GAAG,gBAAgB,CAAC,OAAO,CAAC,CAAC;QAEpD,MAAM,IAAI,GACR,CAAC,MAAM,IAAA,6DAA2B,EAChC,WAAW,EACX,iBAAiB,EACjB,OAAO,EACP,CAAC,IAAA,oBAAe,EAAC,IAAA,6BAAoB,EAAC,OAAO,CAAC,aAAa,CAAC,CAAC,CAAC,CAC/D,CAAC,GAAG,cAAc,CAAC;QAEtB,MAAM,WAAW,GAAG,MAAM,gBAAgB,CACxC,cAAc,EACd,WAAW,EACX,iBAAiB,EACjB,OAAO,CACR,CAAC;QAEF,MAAA,YAAY,CAAC,IAAI,qCAAjB,YAAY,CAAC,IAAI,IAAM,WAAW,EAAC;QAEnC,MAAM,EAAE,OAAO,EAAE,QAAQ,EAAE,GAAG,YAAY,CAAC,IAAI,CAAC,CAAC;QACjD,MAAM,OAAO,GAAyB;YACpC,IAAI,EAAE,WAAW;YACjB,OAAO;YACP,QAAQ;SACT,CAAC;QAEF,OAAO;YACL,QAAQ,EAAE;gBACR,CAAC,WAAW,CAAC,EAAE,OAAO;aACvB;SACF,CAAC;IACJ,CAAC;CAAA;AAED,SAAe,gBAAgB,CAC7B,cAAsB,EACtB,WAAmB,EACnB,OAA2B,EAC3B,OAA2B;;QAE3B,MAAM,sBAAsB,GAAG,IAAA,0BAAiB,EAC9C,OAAO,CAAC,aAAa,EACrB,cAAc,CACf,CAAC;QAEF,MAAM,eAAe,GAAG,IAAA,WAAI,EAAC,OAAO,CAAC,aAAa,EAAE,WAAW,EAAE,cAAc,CAAC,CAAC;QACjF,MAAM,WAAW,GAAG,IAAA,kBAAS,EAAC,IAAA,iBAAY,EAAC,eAAe,EAAE,OAAO,CAAC,CAAC,CAAC;QAEtE,MAAM,OAAO,GAAwC,EAAE,CAAC;QAExD,eAAM,CAAC,IAAI,CAAC,sBAAsB,CAAC,CAAC;QACpC,MAAM,UAAU,GAAgB,OAAO,CAAC,sBAAsB,CAAC,CAAC;QAChE,eAAM,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;QAExB,MAAM,WAAW,GAAG,IAAA,iCAAc,EAAC,WAAW,EAAE,OAAO,CAAC,CAAC;QAEzD,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC,YAAY,IAAI,EAAE,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,WAAW,EAAE,MAAM,CAAC,EAAE,EAAE;YAC9E,MAAM,eAAe,GAAG,SAAS,WAAW,EAAE,CAAC;YAC/C,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,MAAM,CAAC;YACnC,OAAO,CAAC,eAAe,CAAC,GAAG;gBACzB,OAAO,EAAE,UAAU,MAAM,IAAI,OAAO,kBAAkB,WAAW,CAAC,IAAI,QAAQ;gBAC9E,OAAO,EAAE,EAAE,GAAG,EAAE,OAAO,CAAC,GAAG,EAAE,EAAE;gBAC/B,KAAK,EAAE,IAAI;gBACX,SAAS,EAAE,CAAC,IAAI,eAAe,EAAE,CAAC;gBAClC,MAAM,EAAE;oBACN,GAAG,CAAC,YAAY,IAAI,WAAW;wBAC7B,CAAC,CAAC,CAAC,YAAY,EAAE,aAAa,CAAC;wBAC/B,CAAC,CAAC,CAAC,SAAS,EAAE,UAAU,CAAC,CAAC;oBAC5B;wBACE,oBAAoB,EAAE,EAAE;qBACzB;iBACF;gBACD,OAAO,EAAE,EAAE;gBACX,QAAQ,EAAE;oBACR,YAAY,EAAE,CAAC,iCAAiC,CAAC;oBACjD,WAAW,EAAE,eAAe;oBAC5B,UAAU;oBACV,8CAA8C;oBAC9C,eAAe;oBACf,iBAAiB;oBACjB,yBAAyB;oBACzB,mCAAmC;oBACnC,SAAS;oBACT,OAAO;oBACP,KAAK;iBACN;aACF,CAAC;QACJ,CAAC,CAAC,CAAC;QAEH,MAAM,QAAQ,GAAG,EAAE,CAAC;QACpB,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,CAAC;IAC/B,CAAC;CAAA;AAED,SAAS,mBAAmB,CAC1B,UAA8B,EAC9B,WAAmB,EACnB,aAAqB,EACrB,IAAY;IAEZ,IAAI,CAAC,UAAU,EAAE,CAAC;QAChB,IAAI,WAAW,KAAK,GAAG,EAAE,CAAC;YACxB,OAAO,iBAAiB,IAAI,EAAE,CAAC;QACjC,CAAC;aAAM,CAAC;YACN,OAAO,mBAAmB,IAAI,gBAAgB,CAAC;QACjD,CAAC;IACH,CAAC;SAAM,CAAC;QACN,IAAI,IAAA,iBAAU,EAAC,UAAU,CAAC,EAAE,CAAC;YAC3B,OAAO,mBAAmB,IAAA,eAAQ,EAAC,aAAa,EAAE,UAAU,CAAC,EAAE,CAAC;QAClE,CAAC;aAAM,CAAC;YACN,IAAI,UAAU,CAAC,UAAU,CAAC,IAAI,CAAC,EAAE,CAAC;gBAChC,OAAO,IAAA,WAAI,EAAC,iBAAiB,EAAE,IAAA,WAAI,EAAC,WAAW,EAAE,UAAU,CAAC,CAAC,CAAC;YAChE,CAAC;iBAAM,CAAC;gBACN,OAAO,IAAA,WAAI,EAAC,eAAe,EAAE,UAAU,CAAC,CAAC;YAC3C,CAAC;QACH,CAAC;IACH,CAAC;AACH,CAAC;AAED,SAAS,gBAAgB,CAAC,OAA2B;;IACnD,OAAO,aAAP,OAAO,cAAP,OAAO,IAAP,OAAO,GAAK,EAAE,EAAC;IACf,MAAA,OAAO,CAAC,eAAe,oCAAvB,OAAO,CAAC,eAAe,GAAK,OAAO,EAAC;IACpC,MAAA,OAAO,CAAC,eAAe,oCAAvB,OAAO,CAAC,eAAe,GAAK,OAAO,EAAC;IACpC,MAAA,OAAO,CAAC,iBAAiB,oCAAzB,OAAO,CAAC,iBAAiB,GAAK,SAAS,EAAC;IACxC,MAAA,OAAO,CAAC,cAAc,oCAAtB,OAAO,CAAC,cAAc,GAAK,MAAM,EAAC;IAClC,MAAA,OAAO,CAAC,qBAAqB,oCAA7B,OAAO,CAAC,qBAAqB,GAAK,cAAc,EAAC;IACjD,MAAA,OAAO,CAAC,mBAAmB,oCAA3B,OAAO,CAAC,mBAAmB,GAAK,WAAW,EAAC;IAC5C,OAAO,OAAO,CAAC;AACjB,CAAC"}
@@ -0,0 +1,11 @@
1
+ export type TOnixConfig = {
2
+ "moniker": string;
3
+ "environments": Record<string, {
4
+ "ecr": string;
5
+ "envKey": string;
6
+ "envPath": string;
7
+ "port": string;
8
+ "prefix": string;
9
+ "profile": string;
10
+ }>;
11
+ };
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=onix-config.type.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"onix-config.type.js","sourceRoot":"","sources":["../../../../onix/src/types/onix-config.type.ts"],"names":[],"mappings":""}
@@ -0,0 +1 @@
1
+ export declare function build(mainFilePath: string, outfile: string, watchMode?: boolean): Promise<void>;
@@ -0,0 +1,39 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.build = build;
4
+ const tslib_1 = require("tslib");
5
+ const esbuild = require("esbuild");
6
+ const esbuild_node_externals_1 = require("esbuild-node-externals");
7
+ const baseConfig = {
8
+ bundle: true,
9
+ minify: true,
10
+ sourcemap: true,
11
+ platform: 'node',
12
+ target: ['node14.16'],
13
+ format: 'cjs',
14
+ external: ['vscode'],
15
+ plugins: [
16
+ (0, esbuild_node_externals_1.nodeExternalsPlugin)() // Helps exclude node_modules
17
+ ]
18
+ };
19
+ function build(mainFilePath_1, outfile_1) {
20
+ return tslib_1.__awaiter(this, arguments, void 0, function* (mainFilePath, outfile, watchMode = false) {
21
+ const extensionConfig = Object.assign(Object.assign({}, baseConfig), { entryPoints: [mainFilePath], outfile });
22
+ try {
23
+ if (watchMode) {
24
+ const context = yield esbuild.context(Object.assign(Object.assign({}, extensionConfig), { sourcemap: true }));
25
+ console.log('Watching 😍');
26
+ yield context.watch();
27
+ }
28
+ else {
29
+ yield esbuild.build(extensionConfig);
30
+ console.log('Build complete ✅');
31
+ }
32
+ }
33
+ catch (error) {
34
+ console.error('Build failed ❌', error);
35
+ process.exit(1);
36
+ }
37
+ });
38
+ }
39
+ //# sourceMappingURL=build.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"build.js","sourceRoot":"","sources":["../../../../onix/src/utils/build.ts"],"names":[],"mappings":";;AAgBA,sBAuBC;;AAvCD,mCAAmC;AACnC,mEAA6D;AAE7D,MAAM,UAAU,GAAG;IACjB,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,IAAI;IACZ,SAAS,EAAE,IAAI;IACf,QAAQ,EAAE,MAAa;IACvB,MAAM,EAAE,CAAC,WAAW,CAAC;IACrB,MAAM,EAAE,KAAY;IACpB,QAAQ,EAAE,CAAC,QAAQ,CAAC;IACpB,OAAO,EAAE;QACP,IAAA,4CAAmB,GAAE,CAAC,6BAA6B;KACpD;CACF,CAAC;AAEF,SAAsB,KAAK;iEAAC,YAAoB,EAAE,OAAe,EAAE,SAAS,GAAG,KAAK;QAClF,MAAM,eAAe,mCAChB,UAAU,KACb,WAAW,EAAE,CAAC,YAAY,CAAC,EAC3B,OAAO,GACR,CAAC;QAEF,IAAI,CAAC;YACH,IAAI,SAAS,EAAE,CAAC;gBACd,MAAM,OAAO,GAAG,MAAM,OAAO,CAAC,OAAO,iCAChC,eAAe,KAClB,SAAS,EAAE,IAAI,IACf,CAAC;gBACH,OAAO,CAAC,GAAG,CAAC,aAAa,CAAC,CAAC;gBAC3B,MAAM,OAAO,CAAC,KAAK,EAAE,CAAC;YACxB,CAAC;iBAAM,CAAC;gBACN,MAAM,OAAO,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC;gBACrC,OAAO,CAAC,GAAG,CAAC,kBAAkB,CAAC,CAAC;YAClC,CAAC;QACH,CAAC;QAAC,OAAO,KAAK,EAAE,CAAC;YACf,OAAO,CAAC,KAAK,CAAC,gBAAgB,EAAE,KAAK,CAAC,CAAC;YACvC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;QAClB,CAAC;IACH,CAAC;CAAA"}
@@ -0,0 +1 @@
1
+ export declare function getProjectPathFromName(projectName: string): string;
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.getProjectPathFromName = getProjectPathFromName;
4
+ const platforms = ['app', 'test'];
5
+ // TODO: THIS IS RIDICULOUS... FIX/REMOVE... USE NATIVE TECHNIQUE BY LOOKING AT CONTEXT/OPTIONS
6
+ function getProjectPathFromName(projectName) {
7
+ const slashedInsteadOfDashed = projectName.split('-').join('/');
8
+ return platforms.reduce((_, platform) => _
9
+ .replace(platform, `${platform}s`)
10
+ .replace(`${platform}ss`, `${platform}s`) // smh lol
11
+ , slashedInsteadOfDashed);
12
+ }
13
+ //# sourceMappingURL=get-project-path-from-name.function.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-project-path-from-name.function.js","sourceRoot":"","sources":["../../../../onix/src/utils/get-project-path-from-name.function.ts"],"names":[],"mappings":";;AAGA,wDAMC;AATD,MAAM,SAAS,GAAG,CAAC,KAAK,EAAE,MAAM,CAAC,CAAC;AAElC,+FAA+F;AAC/F,SAAgB,sBAAsB,CAAC,WAAmB;IACtD,MAAM,sBAAsB,GAAG,WAAY,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;IACjE,OAAO,SAAS,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,QAAQ,EAAE,EAAE,CAAC,CAAC;SACrC,OAAO,CAAC,QAAQ,EAAE,GAAG,QAAQ,GAAG,CAAC;SACjC,OAAO,CAAC,GAAG,QAAQ,IAAI,EAAE,GAAG,QAAQ,GAAG,CAAC,CAAC,UAAU;MAClD,sBAAsB,CAAC,CAAC;AAClC,CAAC"}
@@ -0,0 +1,5 @@
1
+ import type { PlaywrightTestConfig } from '@playwright/test';
2
+ /**
3
+ * See https://playwright.dev/docs/test-configuration.
4
+ */
5
+ export declare const playwrightConfig: PlaywrightTestConfig;
@@ -0,0 +1,92 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.playwrightConfig = void 0;
4
+ const test_1 = require("@playwright/test");
5
+ /**
6
+ * See https://playwright.dev/docs/test-configuration.
7
+ */
8
+ exports.playwrightConfig = {
9
+ testDir: './src/tests',
10
+ /* Maximum time one test can run for. */
11
+ timeout: 300 * 1000,
12
+ expect: {
13
+ /**
14
+ * Maximum time expect() should wait for the condition to be met.
15
+ * For example in `await expect(locator).toHaveText();`
16
+ */
17
+ timeout: 5000,
18
+ },
19
+ /* Run tests in files in parallel */
20
+ fullyParallel: true,
21
+ /* Fail the build on CI if you accidentally left test.only in the source code. */
22
+ forbidOnly: !!process.env.CI,
23
+ /* Retry on CI only */
24
+ retries: process.env.CI ? 2 : 0,
25
+ /* Opt out of parallel tests on CI. */
26
+ workers: process.env.CI ? 1 : undefined,
27
+ /* Reporter to use. See https://playwright.dev/docs/test-reporters */
28
+ reporter: 'list',
29
+ /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
30
+ use: {
31
+ headless: true,
32
+ /* Maximum time each action such as `click()` can take. Defaults to 0 (no limit). */
33
+ actionTimeout: 0,
34
+ /* Base URL to use in actions like `await page.goto('/')`. */
35
+ // baseURL: 'http://localhost:3000',
36
+ /* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
37
+ trace: 'on-first-retry',
38
+ },
39
+ /* Configure projects for major browsers */
40
+ projects: [
41
+ {
42
+ name: 'chromium',
43
+ use: Object.assign({}, test_1.devices['Desktop Chrome']),
44
+ },
45
+ // {
46
+ // name: 'firefox',
47
+ // use: {
48
+ // ...devices['Desktop Firefox'],
49
+ // },
50
+ // },
51
+ // {
52
+ // name: 'webkit',
53
+ // use: {
54
+ // ...devices['Desktop Safari'],
55
+ // },
56
+ // },
57
+ /* Test against mobile viewports. */
58
+ // {
59
+ // name: 'Mobile Chrome',
60
+ // use: {
61
+ // ...devices['Pixel 5'],
62
+ // },
63
+ // },
64
+ // {
65
+ // name: 'Mobile Safari',
66
+ // use: {
67
+ // ...devices['iPhone 12'],
68
+ // },
69
+ // },
70
+ /* Test against branded browsers. */
71
+ // {
72
+ // name: 'Microsoft Edge',
73
+ // use: {
74
+ // channel: 'msedge',
75
+ // },
76
+ // },
77
+ // {
78
+ // name: 'Google Chrome',
79
+ // use: {
80
+ // channel: 'chrome',
81
+ // },
82
+ // },
83
+ ],
84
+ /* Folder for test artifacts such as screenshots, videos, traces, etc. */
85
+ // outputDir: 'test-results/',
86
+ /* Run your local dev server before starting the tests */
87
+ // webServer: {
88
+ // command: 'npm run start',
89
+ // port: 3000,
90
+ // },
91
+ };
92
+ //# sourceMappingURL=playwright.config.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"playwright.config.js","sourceRoot":"","sources":["../../../../onix/src/utils/playwright.config.ts"],"names":[],"mappings":";;;AACA,2CAA2C;AAE3C;;GAEG;AACU,QAAA,gBAAgB,GAAyB;IACpD,OAAO,EAAE,aAAa;IACtB,wCAAwC;IACxC,OAAO,EAAE,GAAG,GAAG,IAAI;IACnB,MAAM,EAAE;QACN;;;WAGG;QACH,OAAO,EAAE,IAAI;KACd;IACD,oCAAoC;IACpC,aAAa,EAAE,IAAI;IACnB,iFAAiF;IACjF,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE;IAC5B,sBAAsB;IACtB,OAAO,EAAE,OAAO,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;IAC/B,sCAAsC;IACtC,OAAO,EAAE,OAAO,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS;IACvC,qEAAqE;IACrE,QAAQ,EAAE,MAAM;IAChB,wGAAwG;IACxG,GAAG,EAAE;QACH,QAAQ,EAAE,IAAI;QACd,oFAAoF;QACpF,aAAa,EAAE,CAAC;QAChB,6DAA6D;QAC7D,oCAAoC;QAEpC,+FAA+F;QAC/F,KAAK,EAAE,gBAAgB;KACxB;IAED,2CAA2C;IAC3C,QAAQ,EAAE;QACR;YACE,IAAI,EAAE,UAAU;YAChB,GAAG,oBACE,cAAO,CAAC,gBAAgB,CAAC,CAC7B;SACF;QAED,IAAI;QACJ,qBAAqB;QACrB,WAAW;QACX,qCAAqC;QACrC,OAAO;QACP,KAAK;QAEL,IAAI;QACJ,oBAAoB;QACpB,WAAW;QACX,oCAAoC;QACpC,OAAO;QACP,KAAK;QAEL,oCAAoC;QACpC,IAAI;QACJ,2BAA2B;QAC3B,WAAW;QACX,6BAA6B;QAC7B,OAAO;QACP,KAAK;QACL,IAAI;QACJ,2BAA2B;QAC3B,WAAW;QACX,+BAA+B;QAC/B,OAAO;QACP,KAAK;QAEL,oCAAoC;QACpC,IAAI;QACJ,4BAA4B;QAC5B,WAAW;QACX,yBAAyB;QACzB,OAAO;QACP,KAAK;QACL,MAAM;QACN,6BAA6B;QAC7B,aAAa;QACb,2BAA2B;QAC3B,SAAS;QACT,OAAO;KACR;IAED,yEAAyE;IACzE,8BAA8B;IAE9B,yDAAyD;IACzD,eAAe;IACf,8BAA8B;IAC9B,gBAAgB;IAChB,KAAK;CACN,CAAC"}
@@ -1,4 +0,0 @@
1
- import { PromiseExecutor } from '@nx/devkit';
2
- import { XxxxExecutorSchema } from './schema';
3
- declare const runExecutor: PromiseExecutor<XxxxExecutorSchema>;
4
- export default runExecutor;
@@ -1,11 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
- const runExecutor = (options) => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
5
- console.log('Executor ran for Xxxx', options);
6
- return {
7
- success: true,
8
- };
9
- });
10
- exports.default = runExecutor;
11
- //# sourceMappingURL=executor.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"executor.js","sourceRoot":"","sources":["../../../../onix/src/executors/executor.ts"],"names":[],"mappings":";;;AAGA,MAAM,WAAW,GAAwC,CAAO,OAAO,EAAE,EAAE;IACzE,OAAO,CAAC,GAAG,CAAC,uBAAuB,EAAE,OAAO,CAAC,CAAC;IAC9C,OAAO;QACL,OAAO,EAAE,IAAI;KACd,CAAC;AACJ,CAAC,CAAA,CAAC;AAEF,kBAAe,WAAW,CAAC"}
@@ -1 +0,0 @@
1
- export interface XxxxExecutorSchema {} // eslint-disable-line