@genesislcap/uvu-playwright-builder 14.436.0-FUI-2489.6 → 14.436.0-FUI-2489.7
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/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/package.json +4 -4
- package/src/index.ts +2 -2
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;yBAIrC,KAAK,YAAY;AAAvC,wBA8EE"}
|
package/dist/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const tslib_1 = require("tslib");
|
|
4
|
-
const node_path_1 = require("node:path");
|
|
5
4
|
const build_kit_1 = require("@genesislcap/build-kit");
|
|
5
|
+
const node_path_1 = require("node:path");
|
|
6
6
|
exports.default = (ctx) => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
|
|
7
7
|
var _a;
|
|
8
8
|
const { dirs: { cwd }, cli: { isTest, options }, pkg, } = ctx;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/uvu-playwright-builder",
|
|
3
3
|
"description": "UVU/Playwright builder",
|
|
4
|
-
"version": "14.436.0-FUI-2489.
|
|
4
|
+
"version": "14.436.0-FUI-2489.7",
|
|
5
5
|
"license": "SEE LICENSE IN license.txt",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
"lint:ox:fix": "genx lint -l ox --fix"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@genesislcap/build-kit": "14.436.0-FUI-2489.
|
|
22
|
-
"@genesislcap/foundation-testing": "14.436.0-FUI-2489.
|
|
21
|
+
"@genesislcap/build-kit": "14.436.0-FUI-2489.7",
|
|
22
|
+
"@genesislcap/foundation-testing": "14.436.0-FUI-2489.7",
|
|
23
23
|
"c8": "^7.11.0",
|
|
24
24
|
"nyc": "^15.1.0",
|
|
25
25
|
"playwright-test": "^14.1.12",
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"publishConfig": {
|
|
40
40
|
"access": "public"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "0255c3ca76f815c03c5699c5b7364d624ed08272"
|
|
43
43
|
}
|
package/src/index.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { resolve } from 'node:path';
|
|
2
|
-
import { rm, run, resolveBin } from '@genesislcap/build-kit';
|
|
3
1
|
import type { BuildContext } from '@genesislcap/build-kit';
|
|
2
|
+
import { rm, run, resolveBin } from '@genesislcap/build-kit';
|
|
3
|
+
import { resolve } from 'node:path';
|
|
4
4
|
|
|
5
5
|
export default async (ctx: BuildContext) => {
|
|
6
6
|
const {
|