@nx/playwright 23.0.0-beta.17 → 23.0.0-beta.19
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 → dist/index.d.ts} +0 -1
- package/{plugin.d.ts → dist/plugin.d.ts} +0 -1
- package/{preset.d.ts → dist/preset.d.ts} +0 -1
- package/{src → dist/src}/executors/merge-reports/merge-reports.impl.d.ts +0 -1
- package/{src → dist/src}/executors/playwright/playwright.impl.d.ts +0 -1
- package/{src → dist/src}/executors/playwright/schema.json +1 -0
- package/{src → dist/src}/generators/configuration/configuration.d.ts +0 -1
- package/{src → dist/src}/generators/convert-to-inferred/convert-to-inferred.d.ts +0 -1
- package/{src → dist/src}/generators/init/init.d.ts +0 -1
- package/dist/src/migrations/update-19-6-0/use-serve-static-preview-for-command.d.ts +1 -0
- package/dist/src/migrations/update-19-6-0/use-serve-static-preview-for-command.js +2 -0
- package/{src → dist/src}/plugins/plugin.d.ts +0 -1
- package/{src → dist/src}/plugins/plugin.js +46 -14
- package/{src → dist/src}/utils/add-linter.d.ts +0 -1
- package/{src → dist/src}/utils/assert-supported-playwright-version.d.ts +0 -1
- package/{src → dist/src}/utils/deprecation.d.ts +0 -1
- package/{src → dist/src}/utils/preset.d.ts +0 -1
- package/{src → dist/src}/utils/reporters.d.ts +0 -1
- package/{src → dist/src}/utils/versions.d.ts +0 -1
- package/{src → dist/src}/utils/versions.js +2 -1
- package/executors.json +4 -4
- package/generators.json +6 -6
- package/package.json +60 -34
- package/index.d.ts.map +0 -1
- package/plugin.d.ts.map +0 -1
- package/preset.d.ts.map +0 -1
- package/src/executors/merge-reports/merge-reports.impl.d.ts.map +0 -1
- package/src/executors/playwright/playwright.impl.d.ts.map +0 -1
- package/src/generators/configuration/configuration.d.ts.map +0 -1
- package/src/generators/convert-to-inferred/convert-to-inferred.d.ts.map +0 -1
- package/src/generators/init/init.d.ts.map +0 -1
- package/src/migrations/update-19-6-0/use-serve-static-preview-for-command.d.ts +0 -1
- package/src/migrations/update-19-6-0/use-serve-static-preview-for-command.d.ts.map +0 -1
- package/src/migrations/update-19-6-0/use-serve-static-preview-for-command.js +0 -0
- package/src/plugins/plugin.d.ts.map +0 -1
- package/src/utils/add-linter.d.ts.map +0 -1
- package/src/utils/assert-supported-playwright-version.d.ts.map +0 -1
- package/src/utils/deprecation.d.ts.map +0 -1
- package/src/utils/preset.d.ts.map +0 -1
- package/src/utils/reporters.d.ts.map +0 -1
- package/src/utils/versions.d.ts.map +0 -1
- /package/{LICENSE → dist/LICENSE} +0 -0
- /package/{PLUGIN.md → dist/PLUGIN.md} +0 -0
- /package/{index.js → dist/index.js} +0 -0
- /package/{plugin.js → dist/plugin.js} +0 -0
- /package/{preset.js → dist/preset.js} +0 -0
- /package/{src → dist/src}/executors/merge-reports/merge-reports.impl.js +0 -0
- /package/{src → dist/src}/executors/merge-reports/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/merge-reports/schema.json +0 -0
- /package/{src → dist/src}/executors/playwright/playwright.impl.js +0 -0
- /package/{src → dist/src}/generators/configuration/configuration.js +0 -0
- /package/{src → dist/src}/generators/configuration/files/__directory__/example.spec.ts.template +0 -0
- /package/{src → dist/src}/generators/configuration/files/playwright.config.mts.template +0 -0
- /package/{src → dist/src}/generators/configuration/schema.d.ts +0 -0
- /package/{src → dist/src}/generators/configuration/schema.json +0 -0
- /package/{src → dist/src}/generators/convert-to-inferred/convert-to-inferred.js +0 -0
- /package/{src → dist/src}/generators/convert-to-inferred/schema.json +0 -0
- /package/{src → dist/src}/generators/init/init.js +0 -0
- /package/{src → dist/src}/generators/init/schema.d.ts +0 -0
- /package/{src → dist/src}/generators/init/schema.json +0 -0
- /package/{src → dist/src}/utils/add-linter.js +0 -0
- /package/{src → dist/src}/utils/assert-supported-playwright-version.js +0 -0
- /package/{src → dist/src}/utils/deprecation.js +0 -0
- /package/{src → dist/src}/utils/preset.js +0 -0
- /package/{src → dist/src}/utils/reporters.js +0 -0
|
@@ -1,4 +1,3 @@
|
|
|
1
1
|
export { playwrightExecutor, PlaywrightExecutorSchema, } from './src/executors/playwright/playwright.impl';
|
|
2
2
|
export { initGenerator } from './src/generators/init/init';
|
|
3
3
|
export { configurationGenerator } from './src/generators/configuration/configuration';
|
|
4
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
"version": 2,
|
|
4
4
|
"title": "Playwright executor",
|
|
5
5
|
"description": "Run Playwright tests.",
|
|
6
|
+
"x-deprecated": "The `@nx/playwright:playwright` executor is deprecated and will be removed in Nx v24. Run `nx g @nx/playwright:convert-to-inferred` to migrate to the `@nx/playwright/plugin` inferred targets. See https://nx.dev/docs/guides/tasks--caching/convert-to-inferred for details.",
|
|
6
7
|
"type": "object",
|
|
7
8
|
"properties": {
|
|
8
9
|
"browser": {
|
|
@@ -3,4 +3,3 @@ import type { ConfigurationGeneratorSchema } from './schema';
|
|
|
3
3
|
export declare function configurationGenerator(tree: Tree, options: ConfigurationGeneratorSchema): Promise<GeneratorCallback>;
|
|
4
4
|
export declare function configurationGeneratorInternal(tree: Tree, rawOptions: ConfigurationGeneratorSchema): Promise<GeneratorCallback>;
|
|
5
5
|
export default configurationGenerator;
|
|
6
|
-
//# sourceMappingURL=configuration.d.ts.map
|
|
@@ -3,4 +3,3 @@ import { InitGeneratorSchema } from './schema';
|
|
|
3
3
|
export declare function initGenerator(tree: Tree, options: InitGeneratorSchema): Promise<GeneratorCallback>;
|
|
4
4
|
export declare function initGeneratorInternal(tree: Tree, options: InitGeneratorSchema): Promise<GeneratorCallback>;
|
|
5
5
|
export default initGenerator;
|
|
6
|
-
//# sourceMappingURL=init.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -23,8 +23,29 @@ exports.createNodes = [
|
|
|
23
23
|
const packageManager = (0, devkit_1.detectPackageManager)(context.workspaceRoot);
|
|
24
24
|
const pmc = (0, devkit_1.getPackageManagerCommand)(packageManager);
|
|
25
25
|
const lockFileName = (0, js_1.getLockFileName)(packageManager);
|
|
26
|
+
const normalizedOptions = normalizeOptions(options);
|
|
26
27
|
try {
|
|
27
|
-
|
|
28
|
+
const { entries, preErrors } = await filterPlaywrightConfigs(configFilePaths, context);
|
|
29
|
+
const projectHashes = await (0, internal_1.calculateHashesForCreateNodes)(entries.map((e) => e.projectRoot), { ...normalizedOptions, CI: process.env.CI }, context, entries.map((e) => [lockFileName, ...e.externalTsconfigInputs]));
|
|
30
|
+
let results = [];
|
|
31
|
+
let nodeErrors = [];
|
|
32
|
+
try {
|
|
33
|
+
results = await (0, devkit_1.createNodesFromFiles)((configFile, _, ctx, idx) => createNodesInternal(configFile, normalizedOptions, ctx, pluginCache, pmc, entries[idx].externalTsconfigInputs, projectHashes[idx]), entries.map((e) => e.configFile), options, context);
|
|
34
|
+
}
|
|
35
|
+
catch (e) {
|
|
36
|
+
if (e instanceof devkit_1.AggregateCreateNodesError) {
|
|
37
|
+
results = e.partialResults ?? [];
|
|
38
|
+
nodeErrors = e.errors;
|
|
39
|
+
}
|
|
40
|
+
else {
|
|
41
|
+
throw e;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
const allErrors = [...preErrors, ...nodeErrors];
|
|
45
|
+
if (allErrors.length > 0) {
|
|
46
|
+
throw new devkit_1.AggregateCreateNodesError(allErrors, results);
|
|
47
|
+
}
|
|
48
|
+
return results;
|
|
28
49
|
}
|
|
29
50
|
finally {
|
|
30
51
|
pluginCache.writeToDisk();
|
|
@@ -32,20 +53,8 @@ exports.createNodes = [
|
|
|
32
53
|
},
|
|
33
54
|
];
|
|
34
55
|
exports.createNodesV2 = exports.createNodes;
|
|
35
|
-
async function createNodesInternal(configFilePath,
|
|
56
|
+
async function createNodesInternal(configFilePath, normalizedOptions, context, pluginCache, pmc, externalTsconfigInputs, hash) {
|
|
36
57
|
const projectRoot = (0, node_path_1.dirname)(configFilePath);
|
|
37
|
-
// Do not create a project if package.json and project.json isn't there.
|
|
38
|
-
const siblingFiles = (0, node_fs_1.readdirSync)((0, node_path_1.join)(context.workspaceRoot, projectRoot));
|
|
39
|
-
if (!siblingFiles.includes('package.json') &&
|
|
40
|
-
!siblingFiles.includes('project.json')) {
|
|
41
|
-
return {};
|
|
42
|
-
}
|
|
43
|
-
const normalizedOptions = normalizeOptions(options);
|
|
44
|
-
const externalTsconfigInputs = collectExternalTsconfigInputs(projectRoot, context.workspaceRoot);
|
|
45
|
-
const hash = await (0, internal_1.calculateHashForCreateNodes)(projectRoot, {
|
|
46
|
-
...normalizedOptions,
|
|
47
|
-
CI: process.env.CI,
|
|
48
|
-
}, context, [lockFileName, ...externalTsconfigInputs]);
|
|
49
58
|
if (!pluginCache.has(hash)) {
|
|
50
59
|
pluginCache.set(hash, await buildPlaywrightTargets(configFilePath, projectRoot, normalizedOptions, context, pmc, externalTsconfigInputs));
|
|
51
60
|
}
|
|
@@ -405,6 +414,29 @@ function normalizeAtomizedTaskBlobReportOutput(output, subfolder) {
|
|
|
405
414
|
? (0, devkit_1.joinPathFragments)((0, node_path_1.dirname)(output), `${subfolder}.zip`)
|
|
406
415
|
: (0, devkit_1.joinPathFragments)(output, `${subfolder}.zip`);
|
|
407
416
|
}
|
|
417
|
+
async function filterPlaywrightConfigs(configFilePaths, context) {
|
|
418
|
+
const preErrors = [];
|
|
419
|
+
const candidates = await Promise.all(configFilePaths.map(async (configFile) => {
|
|
420
|
+
try {
|
|
421
|
+
const projectRoot = (0, node_path_1.dirname)(configFile);
|
|
422
|
+
const siblingFiles = (0, node_fs_1.readdirSync)((0, node_path_1.join)(context.workspaceRoot, projectRoot));
|
|
423
|
+
if (!siblingFiles.includes('package.json') &&
|
|
424
|
+
!siblingFiles.includes('project.json')) {
|
|
425
|
+
return null;
|
|
426
|
+
}
|
|
427
|
+
const externalTsconfigInputs = collectExternalTsconfigInputs(projectRoot, context.workspaceRoot);
|
|
428
|
+
return { configFile, projectRoot, externalTsconfigInputs };
|
|
429
|
+
}
|
|
430
|
+
catch (e) {
|
|
431
|
+
preErrors.push([configFile, e]);
|
|
432
|
+
return null;
|
|
433
|
+
}
|
|
434
|
+
}));
|
|
435
|
+
return {
|
|
436
|
+
entries: candidates.filter((c) => c !== null),
|
|
437
|
+
preErrors,
|
|
438
|
+
};
|
|
439
|
+
}
|
|
408
440
|
/**
|
|
409
441
|
* Collects tsconfig files read by the Playwright task that are NOT already
|
|
410
442
|
* covered by other inputs, returned as workspace-relative paths.
|
|
@@ -1,4 +1,3 @@
|
|
|
1
1
|
export declare const PLAYWRIGHT_EXECUTOR_DEPRECATION_MESSAGE = "The `@nx/playwright:playwright` executor is deprecated and will be removed in Nx v24. Run `nx g @nx/playwright:convert-to-inferred` to migrate to the `@nx/playwright/plugin` inferred targets. See https://nx.dev/docs/guides/tasks--caching/convert-to-inferred for details.";
|
|
2
2
|
export declare function warnPlaywrightExecutorDeprecation(): void;
|
|
3
3
|
export declare function warnPlaywrightExecutorGenerating(): void;
|
|
4
|
-
//# sourceMappingURL=deprecation.d.ts.map
|
|
@@ -42,4 +42,3 @@ export interface NxPlaywrightOptions {
|
|
|
42
42
|
* @param options optional configuration options
|
|
43
43
|
*/
|
|
44
44
|
export declare function nxE2EPreset(pathToConfig: string, options?: NxPlaywrightOptions): import("@playwright/test").PlaywrightTestConfig<{}, {}>;
|
|
45
|
-
//# sourceMappingURL=preset.d.ts.map
|
|
@@ -1,4 +1,3 @@
|
|
|
1
1
|
import type { PlaywrightTestConfig } from '@playwright/test';
|
|
2
2
|
export type ReporterOutput = [reporter: string, output?: string];
|
|
3
3
|
export declare function getReporterOutputs(playwrightConfig: PlaywrightTestConfig): Array<ReporterOutput>;
|
|
4
|
-
//# sourceMappingURL=reporters.d.ts.map
|
|
@@ -3,4 +3,3 @@ export declare const minSupportedPlaywrightVersion = "1.36.0";
|
|
|
3
3
|
export declare const minPlaywrightVersionForBlobReports = "1.37.0";
|
|
4
4
|
export declare const playwrightVersion = "^1.37.0";
|
|
5
5
|
export declare const eslintPluginPlaywrightVersion = "^1.6.2";
|
|
6
|
-
//# sourceMappingURL=versions.d.ts.map
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.eslintPluginPlaywrightVersion = exports.playwrightVersion = exports.minPlaywrightVersionForBlobReports = exports.minSupportedPlaywrightVersion = exports.nxVersion = void 0;
|
|
4
|
-
|
|
4
|
+
const path_1 = require("path");
|
|
5
|
+
exports.nxVersion = require((0, path_1.join)('@nx/playwright', 'package.json')).version;
|
|
5
6
|
exports.minSupportedPlaywrightVersion = '1.36.0';
|
|
6
7
|
exports.minPlaywrightVersionForBlobReports = '1.37.0';
|
|
7
8
|
exports.playwrightVersion = '^1.37.0';
|
package/executors.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"executors": {
|
|
3
3
|
"playwright": {
|
|
4
|
-
"implementation": "./src/executors/playwright/playwright.impl",
|
|
5
|
-
"schema": "./src/executors/playwright/schema.json",
|
|
4
|
+
"implementation": "./dist/src/executors/playwright/playwright.impl",
|
|
5
|
+
"schema": "./dist/src/executors/playwright/schema.json",
|
|
6
6
|
"description": "Run Playwright tests."
|
|
7
7
|
},
|
|
8
8
|
"merge-reports": {
|
|
9
|
-
"implementation": "./src/executors/merge-reports/merge-reports.impl",
|
|
10
|
-
"schema": "./src/executors/merge-reports/schema.json",
|
|
9
|
+
"implementation": "./dist/src/executors/merge-reports/merge-reports.impl",
|
|
10
|
+
"schema": "./dist/src/executors/merge-reports/schema.json",
|
|
11
11
|
"description": "Merge Playwright blob reports to produce unified reports for the configured reporters (excluding the `blob` reporter).",
|
|
12
12
|
"hidden": true
|
|
13
13
|
}
|
package/generators.json
CHANGED
|
@@ -3,19 +3,19 @@
|
|
|
3
3
|
"version": "0.1",
|
|
4
4
|
"generators": {
|
|
5
5
|
"configuration": {
|
|
6
|
-
"factory": "./src/generators/configuration/configuration#configurationGeneratorInternal",
|
|
7
|
-
"schema": "./src/generators/configuration/schema.json",
|
|
6
|
+
"factory": "./dist/src/generators/configuration/configuration#configurationGeneratorInternal",
|
|
7
|
+
"schema": "./dist/src/generators/configuration/schema.json",
|
|
8
8
|
"description": "Add Nx Playwright configuration to your project"
|
|
9
9
|
},
|
|
10
10
|
"init": {
|
|
11
|
-
"factory": "./src/generators/init/init#initGeneratorInternal",
|
|
12
|
-
"schema": "./src/generators/init/schema.json",
|
|
11
|
+
"factory": "./dist/src/generators/init/init#initGeneratorInternal",
|
|
12
|
+
"schema": "./dist/src/generators/init/schema.json",
|
|
13
13
|
"description": "Initializes a Playwright project in the current workspace",
|
|
14
14
|
"hidden": true
|
|
15
15
|
},
|
|
16
16
|
"convert-to-inferred": {
|
|
17
|
-
"factory": "./src/generators/convert-to-inferred/convert-to-inferred",
|
|
18
|
-
"schema": "./src/generators/convert-to-inferred/schema.json",
|
|
17
|
+
"factory": "./dist/src/generators/convert-to-inferred/convert-to-inferred",
|
|
18
|
+
"schema": "./dist/src/generators/convert-to-inferred/schema.json",
|
|
19
19
|
"description": "Convert existing Playwright project(s) using `@nx/playwright:playwright` executor to use `@nx/playwright/plugin`."
|
|
20
20
|
}
|
|
21
21
|
}
|
package/package.json
CHANGED
|
@@ -1,13 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/playwright",
|
|
3
|
-
"version": "23.0.0-beta.
|
|
4
|
-
"type": "commonjs",
|
|
5
|
-
"homepage": "https://nx.dev",
|
|
3
|
+
"version": "23.0.0-beta.19",
|
|
6
4
|
"private": false,
|
|
7
|
-
"
|
|
8
|
-
|
|
9
|
-
|
|
5
|
+
"type": "commonjs",
|
|
6
|
+
"files": [
|
|
7
|
+
"dist",
|
|
8
|
+
"!dist/tsconfig.tsbuildinfo",
|
|
9
|
+
"!dist/spec",
|
|
10
|
+
"migrations.json",
|
|
11
|
+
"executors.json",
|
|
12
|
+
"generators.json"
|
|
13
|
+
],
|
|
10
14
|
"description": "The Nx Plugin for Playwright contains executors and generators allowing your workspace to use the powerful Playwright integration testing capabilities.",
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "https://github.com/nrwl/nx.git",
|
|
18
|
+
"directory": "packages/playwright"
|
|
19
|
+
},
|
|
11
20
|
"keywords": [
|
|
12
21
|
"Monorepo",
|
|
13
22
|
"Angular",
|
|
@@ -21,28 +30,60 @@
|
|
|
21
30
|
"Testing",
|
|
22
31
|
"Front-end"
|
|
23
32
|
],
|
|
24
|
-
"main": "./index.js",
|
|
25
|
-
"types": "./index.d.ts",
|
|
33
|
+
"main": "./dist/index.js",
|
|
34
|
+
"types": "./dist/index.d.ts",
|
|
35
|
+
"typesVersions": {
|
|
36
|
+
"*": {
|
|
37
|
+
"plugin": [
|
|
38
|
+
"dist/plugin.d.ts"
|
|
39
|
+
],
|
|
40
|
+
"preset": [
|
|
41
|
+
"dist/preset.d.ts"
|
|
42
|
+
]
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"exports": {
|
|
46
|
+
".": {
|
|
47
|
+
"@nx/nx-source": "./index.ts",
|
|
48
|
+
"types": "./dist/index.d.ts",
|
|
49
|
+
"default": "./dist/index.js"
|
|
50
|
+
},
|
|
51
|
+
"./package.json": "./package.json",
|
|
52
|
+
"./migrations.json": "./migrations.json",
|
|
53
|
+
"./generators.json": "./generators.json",
|
|
54
|
+
"./executors.json": "./executors.json",
|
|
55
|
+
"./plugin": {
|
|
56
|
+
"@nx/nx-source": "./plugin.ts",
|
|
57
|
+
"types": "./dist/plugin.d.ts",
|
|
58
|
+
"default": "./dist/plugin.js"
|
|
59
|
+
},
|
|
60
|
+
"./preset": {
|
|
61
|
+
"@nx/nx-source": "./preset.ts",
|
|
62
|
+
"types": "./dist/preset.d.ts",
|
|
63
|
+
"default": "./dist/preset.js"
|
|
64
|
+
}
|
|
65
|
+
},
|
|
26
66
|
"author": "Victor Savkin",
|
|
27
67
|
"license": "MIT",
|
|
28
68
|
"bugs": {
|
|
29
69
|
"url": "https://github.com/nrwl/nx/issues"
|
|
30
70
|
},
|
|
31
|
-
"
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
71
|
+
"homepage": "https://nx.dev",
|
|
72
|
+
"executors": "./executors.json",
|
|
73
|
+
"generators": "./generators.json",
|
|
74
|
+
"nx-migrations": {
|
|
75
|
+
"migrations": "./migrations.json"
|
|
35
76
|
},
|
|
36
77
|
"dependencies": {
|
|
37
|
-
"@nx/devkit": "23.0.0-beta.17",
|
|
38
|
-
"@nx/eslint": "23.0.0-beta.17",
|
|
39
|
-
"@nx/js": "23.0.0-beta.17",
|
|
40
78
|
"tslib": "^2.3.0",
|
|
41
79
|
"minimatch": "10.2.5",
|
|
42
|
-
"semver": "^7.6.3"
|
|
80
|
+
"semver": "^7.6.3",
|
|
81
|
+
"@nx/js": "23.0.0-beta.19",
|
|
82
|
+
"@nx/eslint": "23.0.0-beta.19",
|
|
83
|
+
"@nx/devkit": "23.0.0-beta.19"
|
|
43
84
|
},
|
|
44
85
|
"devDependencies": {
|
|
45
|
-
"nx": "23.0.0-beta.
|
|
86
|
+
"nx": "23.0.0-beta.19"
|
|
46
87
|
},
|
|
47
88
|
"peerDependencies": {
|
|
48
89
|
"@playwright/test": "^1.36.0"
|
|
@@ -52,22 +93,7 @@
|
|
|
52
93
|
"optional": true
|
|
53
94
|
}
|
|
54
95
|
},
|
|
55
|
-
"
|
|
56
|
-
|
|
57
|
-
"exports": {
|
|
58
|
-
".": "./index.js",
|
|
59
|
-
"./package.json": "./package.json",
|
|
60
|
-
"./migrations.json": "./migrations.json",
|
|
61
|
-
"./generators.json": "./generators.json",
|
|
62
|
-
"./generators/*/schema.json": "./src/generators/*/schema.json",
|
|
63
|
-
"./generators/*/schema": "./src/generators/*/schema.d.ts",
|
|
64
|
-
"./executors.json": "./executors.json",
|
|
65
|
-
"./executors/*/schema.json": "./src/executors/*/schema.json",
|
|
66
|
-
"./executors/*/schema": "./src/executors/*/schema.d.ts",
|
|
67
|
-
"./plugin": "./plugin.js",
|
|
68
|
-
"./preset": "./src/utils/preset.js"
|
|
69
|
-
},
|
|
70
|
-
"nx-migrations": {
|
|
71
|
-
"migrations": "./migrations.json"
|
|
96
|
+
"publishConfig": {
|
|
97
|
+
"access": "public"
|
|
72
98
|
}
|
|
73
99
|
}
|
package/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../packages/playwright/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,kBAAkB,EAClB,wBAAwB,GACzB,MAAM,4CAA4C,CAAC;AACpD,OAAO,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAC;AAC3D,OAAO,EAAE,sBAAsB,EAAE,MAAM,8CAA8C,CAAC"}
|
package/plugin.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.d.ts","sourceRoot":"","sources":["../../../packages/playwright/plugin.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,WAAW,EACX,aAAa,EACb,uBAAuB,GACxB,MAAM,sBAAsB,CAAC"}
|
package/preset.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"preset.d.ts","sourceRoot":"","sources":["../../../packages/playwright/preset.ts"],"names":[],"mappings":"AAAA,cAAc,oBAAoB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"merge-reports.impl.d.ts","sourceRoot":"","sources":["../../../../../../packages/playwright/src/executors/merge-reports/merge-reports.impl.ts"],"names":[],"mappings":"AAIA,OAAO,EAGL,KAAK,eAAe,EACrB,MAAM,YAAY,CAAC;AAQpB,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAEvC,wBAAsB,oBAAoB,CACxC,OAAO,EAAE,MAAM,EACf,OAAO,EAAE,eAAe;;GA4HzB;AAED,eAAe,oBAAoB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"playwright.impl.d.ts","sourceRoot":"","sources":["../../../../../../packages/playwright/src/executors/playwright/playwright.impl.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,eAAe,EAKhB,MAAM,YAAY,CAAC;AAIpB,MAAM,WAAW,wBAAwB;IAKvC,OAAO,CAAC,EAAE,KAAK,GAAG,UAAU,GAAG,SAAS,GAAG,QAAQ,GAAG,MAAM,CAAC;IAC7D,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,EAAE,CAAC;IACrB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,OAAO,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAC1B,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,WAAW,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;IAC/B,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,EACL,MAAM,GACN,MAAM,GACN,KAAK,GACL,MAAM,GACN,OAAO,GACP,MAAM,GACN,QAAQ,GACR,MAAM,GACN,MAAM,CAAC;IACX,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,KAAK,CAAC,EACF,IAAI,GACJ,KAAK,GACL,gBAAgB,GAChB,gBAAgB,GAChB,mBAAmB,CAAC;IACxB,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,EAAE,CAAC,EAAE,OAAO,CAAC;IACb,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,wBAAsB,kBAAkB,CACtC,OAAO,EAAE,wBAAwB,EACjC,OAAO,EAAE,eAAe;aAsCM,OAAO;GAKtC;AAkDD,eAAe,kBAAkB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"configuration.d.ts","sourceRoot":"","sources":["../../../../../../packages/playwright/src/generators/configuration/configuration.ts"],"names":[],"mappings":"AAMA,OAAO,EAIL,iBAAiB,EAWjB,IAAI,EAML,MAAM,YAAY,CAAC;AAiBpB,OAAO,KAAK,EACV,4BAA4B,EAE7B,MAAM,UAAU,CAAC;AAGlB,wBAAgB,sBAAsB,CACpC,IAAI,EAAE,IAAI,EACV,OAAO,EAAE,4BAA4B,8BAGtC;AAED,wBAAsB,8BAA8B,CAClD,IAAI,EAAE,IAAI,EACV,UAAU,EAAE,4BAA4B,8BA6NzC;AA2KD,eAAe,sBAAsB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"convert-to-inferred.d.ts","sourceRoot":"","sources":["../../../../../../packages/playwright/src/generators/convert-to-inferred/convert-to-inferred.ts"],"names":[],"mappings":"AAIA,OAAO,EAKL,KAAK,IAAI,EACV,MAAM,YAAY,CAAC;AAIpB,UAAU,MAAM;IACd,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,GAAG,CAAC,EAAE,OAAO,CAAC;IACd,UAAU,CAAC,EAAE,OAAO,CAAC;CACtB;AAED,wBAAsB,iBAAiB,CAAC,IAAI,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,iBA4BlE;AA+BD,eAAe,iBAAiB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"init.d.ts","sourceRoot":"","sources":["../../../../../../packages/playwright/src/generators/init/init.ts"],"names":[],"mappings":"AACA,OAAO,EAIL,iBAAiB,EAGjB,IAAI,EACL,MAAM,YAAY,CAAC;AAIpB,OAAO,EAAE,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAE/C,wBAAgB,aAAa,CAAC,IAAI,EAAE,IAAI,EAAE,OAAO,EAAE,mBAAmB,8BAErE;AAED,wBAAsB,qBAAqB,CACzC,IAAI,EAAE,IAAI,EACV,OAAO,EAAE,mBAAmB,8BA4C7B;AAED,eAAe,aAAa,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
//# sourceMappingURL=use-serve-static-preview-for-command.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"use-serve-static-preview-for-command.d.ts","sourceRoot":"","sources":["../../../../../../packages/playwright/src/migrations/update-19-6-0/use-serve-static-preview-for-command.ts"],"names":[],"mappings":""}
|
|
File without changes
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.d.ts","sourceRoot":"","sources":["../../../../../packages/playwright/src/plugins/plugin.ts"],"names":[],"mappings":"AAKA,OAAO,EAGL,KAAK,aAAa,EAQnB,MAAM,YAAY,CAAC;AAapB,MAAM,WAAW,uBAAuB;IACtC,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAWD,eAAO,MAAM,WAAW,EAAE,aAAa,CAAC,uBAAuB,CA+B9D,CAAC;AAEF,eAAO,MAAM,aAAa,wCAAc,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"add-linter.d.ts","sourceRoot":"","sources":["../../../../../packages/playwright/src/utils/add-linter.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,iBAAiB,EAIjB,IAAI,EACL,MAAM,YAAY,CAAC;AACpB,OAAO,EAAE,MAAM,EAAE,UAAU,EAAwB,MAAM,YAAY,CAAC;AAatE,MAAM,WAAW,uBAAuB;IACtC,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,MAAM,GAAG,UAAU,CAAC;IAC5B,uBAAuB,EAAE,OAAO,CAAC;IACjC,eAAe,EAAE,OAAO,CAAC;IACzB,WAAW,EAAE,OAAO,CAAC;IACrB,EAAE,CAAC,EAAE,OAAO,CAAC;IACb;;QAEI;IACJ,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,OAAO,CAAC;CACrB;AAED,wBAAsB,4BAA4B,CAChD,IAAI,EAAE,IAAI,EACV,OAAO,EAAE,uBAAuB,GAC/B,OAAO,CAAC,iBAAiB,CAAC,CAqF5B"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"assert-supported-playwright-version.d.ts","sourceRoot":"","sources":["../../../../../packages/playwright/src/utils/assert-supported-playwright-version.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,IAAI,EAAE,MAAM,YAAY,CAAC;AAIvC,wBAAgB,gCAAgC,CAAC,IAAI,EAAE,IAAI,GAAG,IAAI,CAMjE"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"deprecation.d.ts","sourceRoot":"","sources":["../../../../../packages/playwright/src/utils/deprecation.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,uCAAuC,mRAC8N,CAAC;AAEnR,wBAAgB,iCAAiC,IAAI,IAAI,CAExD;AAED,wBAAgB,gCAAgC,IAAI,IAAI,CAIvD"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"preset.d.ts","sourceRoot":"","sources":["../../../../../packages/playwright/src/utils/preset.ts"],"names":[],"mappings":"AASA,MAAM,WAAW,mBAAmB;IAClC;;;QAGI;IACJ,OAAO,CAAC,EAAE,MAAM,CAAC;IAEjB;;;OAGG;IACH,cAAc,CAAC,EAAE,QAAQ,GAAG,OAAO,GAAG,YAAY,CAAC;IACnD;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,OAAO,CAAC;CAC/B;AAED;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,wBAAgB,WAAW,CACzB,YAAY,EAAE,MAAM,EACpB,OAAO,CAAC,EAAE,mBAAmB,2DA2D9B"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"reporters.d.ts","sourceRoot":"","sources":["../../../../../packages/playwright/src/utils/reporters.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,kBAAkB,CAAC;AAE7D,MAAM,MAAM,cAAc,GAAG,CAAC,QAAQ,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,MAAM,CAAC,CAAC;AAEjE,wBAAgB,kBAAkB,CAChC,gBAAgB,EAAE,oBAAoB,GACrC,KAAK,CAAC,cAAc,CAAC,CAuCvB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"versions.d.ts","sourceRoot":"","sources":["../../../../../packages/playwright/src/utils/versions.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,SAAS,KAAwC,CAAC;AAC/D,eAAO,MAAM,6BAA6B,WAAW,CAAC;AACtD,eAAO,MAAM,kCAAkC,WAAW,CAAC;AAC3D,eAAO,MAAM,iBAAiB,YAAY,CAAC;AAC3C,eAAO,MAAM,6BAA6B,WAAW,CAAC"}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/{src → dist/src}/generators/configuration/files/__directory__/example.spec.ts.template
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|