@nx/detox 21.3.0 → 21.4.0-beta.0
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/.eslintrc.json +3 -3
- package/index.d.ts +1 -0
- package/index.d.ts.map +1 -0
- package/package.json +10 -7
- package/plugin.d.ts +1 -0
- package/plugin.d.ts.map +1 -0
- package/project.json +8 -6
- package/src/executors/build/build.impl.d.ts +1 -0
- package/src/executors/build/build.impl.d.ts.map +1 -0
- package/src/executors/test/test.impl.d.ts +1 -0
- package/src/executors/test/test.impl.d.ts.map +1 -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-git-ignore-entry.d.ts +1 -0
- package/src/generators/application/lib/add-git-ignore-entry.d.ts.map +1 -0
- package/src/generators/application/lib/add-linting.d.ts +1 -0
- package/src/generators/application/lib/add-linting.d.ts.map +1 -0
- package/src/generators/application/lib/add-project.d.ts +1 -0
- package/src/generators/application/lib/add-project.d.ts.map +1 -0
- package/src/generators/application/lib/create-files.d.ts +1 -0
- package/src/generators/application/lib/create-files.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/get-targets.d.ts +1 -0
- package/src/generators/application/lib/get-targets.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/convert-to-inferred/convert-to-inferred.d.ts +1 -0
- package/src/generators/convert-to-inferred/convert-to-inferred.d.ts.map +1 -0
- package/src/generators/convert-to-inferred/lib/post-target-transformer.d.ts +1 -0
- package/src/generators/convert-to-inferred/lib/post-target-transformer.d.ts.map +1 -0
- package/src/generators/convert-to-inferred/lib/process-build-options.d.ts +1 -0
- package/src/generators/convert-to-inferred/lib/process-build-options.d.ts.map +1 -0
- package/src/generators/convert-to-inferred/lib/process-test-options.d.ts +1 -0
- package/src/generators/convert-to-inferred/lib/process-test-options.d.ts.map +1 -0
- package/src/generators/init/init.d.ts +1 -0
- package/src/generators/init/init.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/versions.d.ts +1 -0
- package/src/utils/versions.d.ts.map +1 -0
package/.eslintrc.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
|
-
"extends": "../../.eslintrc",
|
|
2
|
+
"extends": "../../.eslintrc.json",
|
|
3
3
|
"rules": {},
|
|
4
|
-
"ignorePatterns": ["!**/*"],
|
|
4
|
+
"ignorePatterns": ["!**/*", "node_modules"],
|
|
5
5
|
"overrides": [
|
|
6
6
|
{
|
|
7
7
|
"files": [
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"error",
|
|
24
24
|
{
|
|
25
25
|
"buildTargets": ["build-base"],
|
|
26
|
-
"ignoredDependencies": ["nx", "typescript", "detox"]
|
|
26
|
+
"ignoredDependencies": ["nx", "tslib", "typescript", "detox"]
|
|
27
27
|
}
|
|
28
28
|
]
|
|
29
29
|
}
|
package/index.d.ts
CHANGED
package/index.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../packages/detox/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,4BAA4B,CAAC;AAChE,OAAO,EAAE,yBAAyB,EAAE,MAAM,0CAA0C,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/detox",
|
|
3
|
-
"version": "21.
|
|
3
|
+
"version": "21.4.0-beta.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "The Nx Plugin for Detox contains executors and generators for allowing your workspace to use the powerful Detox integration testing capabilities.",
|
|
6
6
|
"keywords": [
|
|
@@ -24,16 +24,19 @@
|
|
|
24
24
|
},
|
|
25
25
|
"license": "MIT",
|
|
26
26
|
"author": "Victor Savkin",
|
|
27
|
-
"main": "./index",
|
|
27
|
+
"main": "./index.js",
|
|
28
28
|
"types": "index.d.ts",
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@nx/devkit": "21.
|
|
31
|
-
"@nx/jest": "21.
|
|
32
|
-
"@nx/js": "21.
|
|
33
|
-
"@nx/eslint": "21.
|
|
34
|
-
"@nx/react": "21.
|
|
30
|
+
"@nx/devkit": "21.4.0-beta.0",
|
|
31
|
+
"@nx/jest": "21.4.0-beta.0",
|
|
32
|
+
"@nx/js": "21.4.0-beta.0",
|
|
33
|
+
"@nx/eslint": "21.4.0-beta.0",
|
|
34
|
+
"@nx/react": "21.4.0-beta.0",
|
|
35
35
|
"tslib": "^2.3.0"
|
|
36
36
|
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"nx": "21.4.0-beta.0"
|
|
39
|
+
},
|
|
37
40
|
"peerDependencies": {
|
|
38
41
|
"detox": "^20.9.0"
|
|
39
42
|
},
|
package/plugin.d.ts
CHANGED
package/plugin.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"plugin.d.ts","sourceRoot":"","sources":["../../../packages/detox/plugin.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,WAAW,EACX,aAAa,EACb,kBAAkB,GACnB,MAAM,sBAAsB,CAAC"}
|
package/project.json
CHANGED
|
@@ -4,9 +4,15 @@
|
|
|
4
4
|
"sourceRoot": "packages/detox/src",
|
|
5
5
|
"projectType": "library",
|
|
6
6
|
"targets": {
|
|
7
|
-
"build
|
|
8
|
-
"
|
|
7
|
+
"build": {
|
|
8
|
+
"outputs": ["{workspaceRoot}/dist/packages/detox/README.md"],
|
|
9
|
+
"command": "node ./scripts/copy-readme.js detox",
|
|
10
|
+
"dependsOn": ["^build", "build-base", "legacy-post-build"]
|
|
11
|
+
},
|
|
12
|
+
"legacy-post-build": {
|
|
13
|
+
"executor": "@nx/workspace-plugin:legacy-post-build",
|
|
9
14
|
"options": {
|
|
15
|
+
"tsConfig": "./tsconfig.lib.json",
|
|
10
16
|
"assets": [
|
|
11
17
|
{
|
|
12
18
|
"input": "packages/detox",
|
|
@@ -41,10 +47,6 @@
|
|
|
41
47
|
}
|
|
42
48
|
]
|
|
43
49
|
}
|
|
44
|
-
},
|
|
45
|
-
"build": {
|
|
46
|
-
"outputs": ["{workspaceRoot}/build/packages/detox/README.md"],
|
|
47
|
-
"command": "node ./scripts/copy-readme.js detox"
|
|
48
50
|
}
|
|
49
51
|
}
|
|
50
52
|
}
|
|
@@ -5,3 +5,4 @@ export interface DetoxBuildOutput {
|
|
|
5
5
|
}
|
|
6
6
|
export default function detoxBuildExecutor(options: DetoxBuildOptions, context: ExecutorContext): AsyncGenerator<DetoxBuildOutput>;
|
|
7
7
|
export declare function runCliBuild(workspaceRoot: string, projectRoot: string, options: DetoxBuildOptions): Promise<unknown>;
|
|
8
|
+
//# sourceMappingURL=build.impl.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"build.impl.d.ts","sourceRoot":"","sources":["../../../../../../packages/detox/src/executors/build/build.impl.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,YAAY,CAAC;AAI7C,OAAO,EAAE,iBAAiB,EAAE,MAAM,UAAU,CAAC;AAE7C,MAAM,WAAW,gBAAgB;IAC/B,OAAO,EAAE,OAAO,CAAC;CAClB;AAID,wBAA+B,kBAAkB,CAC/C,OAAO,EAAE,iBAAiB,EAC1B,OAAO,EAAE,eAAe,GACvB,cAAc,CAAC,gBAAgB,CAAC,CAalC;AAED,wBAAgB,WAAW,CACzB,aAAa,EAAE,MAAM,EACrB,WAAW,EAAE,MAAM,EACnB,OAAO,EAAE,iBAAiB,oBA2B3B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"test.impl.d.ts","sourceRoot":"","sources":["../../../../../../packages/detox/src/executors/test/test.impl.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,eAAe,EAGhB,MAAM,YAAY,CAAC;AAQpB,OAAO,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAE5C,MAAM,WAAW,eAAe;IAC9B,OAAO,EAAE,OAAO,CAAC;CAClB;AAID,wBAA+B,iBAAiB,CAC9C,OAAO,EAAE,gBAAgB,EACzB,OAAO,EAAE,eAAe,GACvB,cAAc,CAAC,eAAe,CAAC,CA0BjC"}
|
|
@@ -3,3 +3,4 @@ import { Schema } from './schema';
|
|
|
3
3
|
export declare function detoxApplicationGenerator(host: Tree, schema: Schema): Promise<import("@nx/devkit").GeneratorCallback>;
|
|
4
4
|
export declare function detoxApplicationGeneratorInternal(host: Tree, schema: Schema): Promise<import("@nx/devkit").GeneratorCallback>;
|
|
5
5
|
export default detoxApplicationGenerator;
|
|
6
|
+
//# sourceMappingURL=application.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"application.d.ts","sourceRoot":"","sources":["../../../../../../packages/detox/src/generators/application/application.ts"],"names":[],"mappings":"AAAA,OAAO,EAAiC,IAAI,EAAE,MAAM,YAAY,CAAC;AASjE,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAQlC,wBAAsB,yBAAyB,CAAC,IAAI,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,mDAMzE;AAED,wBAAsB,iCAAiC,CACrD,IAAI,EAAE,IAAI,EACV,MAAM,EAAE,MAAM,mDA8Cf;AAED,eAAe,yBAAyB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"add-git-ignore-entry.d.ts","sourceRoot":"","sources":["../../../../../../../packages/detox/src/generators/application/lib/add-git-ignore-entry.ts"],"names":[],"mappings":"AAAA,OAAO,EAAU,IAAI,EAAE,MAAM,YAAY,CAAC;AAC1C,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAEvD,wBAAgB,iBAAiB,CAAC,IAAI,EAAE,IAAI,EAAE,OAAO,EAAE,gBAAgB,QAQtE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"add-linting.d.ts","sourceRoot":"","sources":["../../../../../../../packages/detox/src/generators/application/lib/add-linting.ts"],"names":[],"mappings":"AACA,OAAO,EAEL,iBAAiB,EAGjB,IAAI,EACL,MAAM,YAAY,CAAC;AAEpB,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AASvD,wBAAsB,UAAU,CAAC,IAAI,EAAE,IAAI,EAAE,OAAO,EAAE,gBAAgB,8BA+CrE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"add-project.d.ts","sourceRoot":"","sources":["../../../../../../../packages/detox/src/generators/application/lib/add-project.ts"],"names":[],"mappings":"AAAA,OAAO,EAKL,IAAI,EAEL,MAAM,YAAY,CAAC;AAOpB,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAGvD,wBAAgB,UAAU,CAAC,IAAI,EAAE,IAAI,EAAE,OAAO,EAAE,gBAAgB,QAyC/D"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-files.d.ts","sourceRoot":"","sources":["../../../../../../../packages/detox/src/generators/application/lib/create-files.ts"],"names":[],"mappings":"AAAA,OAAO,EAOL,IAAI,EAEL,MAAM,YAAY,CAAC;AAIpB,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAEvD,wBAAgB,WAAW,CAAC,IAAI,EAAE,IAAI,EAAE,OAAO,EAAE,gBAAgB,QAyDhE"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import { type Tree } from '@nx/devkit';
|
|
2
2
|
import type { NormalizedSchema } from './normalize-options';
|
|
3
3
|
export declare function ensureDependencies(tree: Tree, options: NormalizedSchema): import("@nx/devkit").GeneratorCallback;
|
|
4
|
+
//# sourceMappingURL=ensure-dependencies.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ensure-dependencies.d.ts","sourceRoot":"","sources":["../../../../../../../packages/detox/src/generators/application/lib/ensure-dependencies.ts"],"names":[],"mappings":"AAAA,OAAO,EAAgC,KAAK,IAAI,EAAE,MAAM,YAAY,CAAC;AAMrE,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAE5D,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,IAAI,EAAE,OAAO,EAAE,gBAAgB,0CAYvE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-targets.d.ts","sourceRoot":"","sources":["../../../../../../../packages/detox/src/generators/application/lib/get-targets.ts"],"names":[],"mappings":"AAAA,wBAAgB,sBAAsB,CAAC,QAAQ,EAAE,SAAS,GAAG,aAAa;;;;;;;;;EAWzE;AAED,wBAAgB,eAAe,CAAC,QAAQ,EAAE,SAAS,GAAG,aAAa;;;;;;;;;;;;EAclE;AAED,wBAAgB,qBAAqB,CACnC,QAAQ,EAAE,SAAS,GAAG,aAAa,EACnC,OAAO,EAAE,MAAM;;;;;;;;;;;EAgBhB;AAED,wBAAgB,cAAc,CAC5B,QAAQ,EAAE,SAAS,GAAG,aAAa,EACnC,OAAO,EAAE,MAAM;;;;;;;;;;;;;;;EAoBhB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"normalize-options.d.ts","sourceRoot":"","sources":["../../../../../../../packages/detox/src/generators/application/lib/normalize-options.ts"],"names":[],"mappings":"AAAA,OAAO,EAA+C,IAAI,EAAE,MAAM,YAAY,CAAC;AAE/E,OAAO,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;AAGnC,MAAM,WAAW,gBAAiB,SAAQ,IAAI,CAAC,MAAM,EAAE,SAAS,CAAC;IAC/D,WAAW,EAAE,MAAM,CAAC;IACpB,YAAY,EAAE,MAAM,CAAC;IACrB,WAAW,EAAE,MAAM,CAAC;IACpB,OAAO,EAAE,MAAM,CAAC;IAChB,cAAc,EAAE,MAAM,CAAC;IACvB,cAAc,EAAE,MAAM,CAAC;IACvB,UAAU,EAAE,MAAM,CAAC;IACnB,uBAAuB,CAAC,EAAE,OAAO,CAAC;CACnC;AAED,wBAAsB,gBAAgB,CACpC,IAAI,EAAE,IAAI,EACV,OAAO,EAAE,MAAM,GACd,OAAO,CAAC,gBAAgB,CAAC,CAyC3B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"convert-to-inferred.d.ts","sourceRoot":"","sources":["../../../../../../packages/detox/src/generators/convert-to-inferred/convert-to-inferred.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,KAAK,IAAI,EAEV,MAAM,YAAY,CAAC;AAWpB,UAAU,MAAM;IACd,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,UAAU,CAAC,EAAE,OAAO,CAAC;CACtB;AAED,wBAAsB,iBAAiB,CAAC,IAAI,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,uBAyFlE;AAED,eAAe,iBAAiB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"post-target-transformer.d.ts","sourceRoot":"","sources":["../../../../../../../packages/detox/src/generators/convert-to-inferred/lib/post-target-transformer.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,mBAAmB,EAAE,IAAI,EAAE,MAAM,YAAY,CAAC;AAC5D,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,gEAAgE,CAAC;AAGpG,wBAAgB,qBAAqB,CACnC,aAAa,EAAE,aAAa,EAC5B,cAAc,EAAE,CACd,IAAI,EAAE,IAAI,EACV,OAAO,EAAE,GAAG,EACZ,WAAW,EAAE,MAAM,EACnB,WAAW,EAAE,MAAM,EACnB,MAAM,EAAE,mBAAmB,GAAG,SAAS,EACvC,aAAa,EAAE,aAAa,KACzB,IAAI,IAGP,QAAQ,mBAAmB,EAC3B,MAAM,IAAI,EACV,gBAAgB;IAAE,WAAW,EAAE,MAAM,CAAC;IAAC,IAAI,EAAE,MAAM,CAAA;CAAE,EACrD,6BAA6B,mBAAmB,8BAkDnD"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import { type TargetConfiguration, type Tree } from '@nx/devkit';
|
|
2
2
|
import type { AggregatedLog } from '@nx/devkit/src/generators/plugin-migrations/aggregate-log-util';
|
|
3
3
|
export declare function processBuildOptions(_tree: Tree, options: any, projectName: string, _projectRoot: string, target: TargetConfiguration | undefined, _migrationLogs: AggregatedLog): void;
|
|
4
|
+
//# sourceMappingURL=process-build-options.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"process-build-options.d.ts","sourceRoot":"","sources":["../../../../../../../packages/detox/src/generators/convert-to-inferred/lib/process-build-options.ts"],"names":[],"mappings":"AAAA,OAAO,EAAS,KAAK,mBAAmB,EAAE,KAAK,IAAI,EAAE,MAAM,YAAY,CAAC;AACxE,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,gEAAgE,CAAC;AAEpG,wBAAgB,mBAAmB,CACjC,KAAK,EAAE,IAAI,EACX,OAAO,EAAE,GAAG,EACZ,WAAW,EAAE,MAAM,EACnB,YAAY,EAAE,MAAM,EACpB,MAAM,EAAE,mBAAmB,GAAG,SAAS,EACvC,cAAc,EAAE,aAAa,GAC5B,IAAI,CAwBN"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import { type TargetConfiguration, type Tree } from '@nx/devkit';
|
|
2
2
|
import type { AggregatedLog } from '@nx/devkit/src/generators/plugin-migrations/aggregate-log-util';
|
|
3
3
|
export declare function processTestOptions(_tree: Tree, options: any, projectName: string, _projectRoot: string, target: TargetConfiguration | undefined, migrationLogs: AggregatedLog): void;
|
|
4
|
+
//# sourceMappingURL=process-test-options.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"process-test-options.d.ts","sourceRoot":"","sources":["../../../../../../../packages/detox/src/generators/convert-to-inferred/lib/process-test-options.ts"],"names":[],"mappings":"AAAA,OAAO,EAAS,KAAK,mBAAmB,EAAE,KAAK,IAAI,EAAE,MAAM,YAAY,CAAC;AACxE,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,gEAAgE,CAAC;AAEpG,wBAAgB,kBAAkB,CAChC,KAAK,EAAE,IAAI,EACX,OAAO,EAAE,GAAG,EACZ,WAAW,EAAE,MAAM,EACnB,YAAY,EAAE,MAAM,EACpB,MAAM,EAAE,mBAAmB,GAAG,SAAS,EACvC,aAAa,EAAE,aAAa,GAC3B,IAAI,CAiEN"}
|
|
@@ -4,3 +4,4 @@ export declare function detoxInitGenerator(host: Tree, schema: Schema): Promise<
|
|
|
4
4
|
export declare function detoxInitGeneratorInternal(host: Tree, schema: Schema): Promise<GeneratorCallback>;
|
|
5
5
|
export declare function updateDependencies(host: Tree, schema: Schema): GeneratorCallback;
|
|
6
6
|
export default detoxInitGenerator;
|
|
7
|
+
//# sourceMappingURL=init.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"init.d.ts","sourceRoot":"","sources":["../../../../../../packages/detox/src/generators/init/init.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,iBAAiB,EAIjB,IAAI,EACL,MAAM,YAAY,CAAC;AAIpB,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAElC,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,8BAE5D;AAED,wBAAsB,0BAA0B,CAAC,IAAI,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,8BA6C1E;AAED,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,qBAW5D;AAMD,eAAe,kBAAkB,CAAC"}
|
package/src/plugins/plugin.d.ts
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"plugin.d.ts","sourceRoot":"","sources":["../../../../../packages/detox/src/plugins/plugin.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,WAAW,EAIX,aAAa,EAOd,MAAM,YAAY,CAAC;AAUpB,MAAM,WAAW,kBAAkB;IACjC,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,mBAAmB,CAAC,EAAE,MAAM,CAAC;CAC9B;AAwBD,eAAO,MAAM,aAAa,EAAE,aAAa,CAAC,kBAAkB,CAmB3D,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,WAAW,CAAC,kBAAkB,CAkBvD,CAAC"}
|
package/src/utils/versions.d.ts
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"versions.d.ts","sourceRoot":"","sources":["../../../../../packages/detox/src/utils/versions.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,SAAS,KAAwC,CAAC;AAE/D,eAAO,MAAM,YAAY,aAAa,CAAC;AACvC,eAAO,MAAM,qBAAqB,WAAW,CAAC;AAC9C,eAAO,MAAM,yBAAyB,WAAW,CAAC"}
|