@nx/playwright 18.0.0-canary.20240203-7623471 → 18.0.0
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +4 -4
- package/plugin.d.ts +1 -1
- package/plugin.js +2 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@nx/playwright",
|
3
|
-
"version": "18.0.0
|
3
|
+
"version": "18.0.0",
|
4
4
|
"type": "commonjs",
|
5
5
|
"homepage": "https://nx.dev",
|
6
6
|
"private": false,
|
@@ -33,9 +33,9 @@
|
|
33
33
|
},
|
34
34
|
"dependencies": {
|
35
35
|
"@phenomnomnominal/tsquery": "~5.0.1",
|
36
|
-
"@nx/devkit": "18.0.0
|
37
|
-
"@nx/eslint": "18.0.0
|
38
|
-
"@nx/js": "18.0.0
|
36
|
+
"@nx/devkit": "18.0.0",
|
37
|
+
"@nx/eslint": "18.0.0",
|
38
|
+
"@nx/js": "18.0.0",
|
39
39
|
"tslib": "^2.3.0",
|
40
40
|
"minimatch": "9.0.3"
|
41
41
|
},
|
package/plugin.d.ts
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export { createNodes, PlaywrightPluginOptions } from './src/plugins/plugin';
|
1
|
+
export { createNodes, PlaywrightPluginOptions, createDependencies, } from './src/plugins/plugin';
|
package/plugin.js
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.createNodes = void 0;
|
3
|
+
exports.createDependencies = exports.createNodes = void 0;
|
4
4
|
var plugin_1 = require("./src/plugins/plugin");
|
5
5
|
Object.defineProperty(exports, "createNodes", { enumerable: true, get: function () { return plugin_1.createNodes; } });
|
6
|
+
Object.defineProperty(exports, "createDependencies", { enumerable: true, get: function () { return plugin_1.createDependencies; } });
|