@browsermation/test 0.0.12 → 0.0.13
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/bin/cli.js +2 -2
- package/package.json +2 -2
package/dist/bin/cli.js
CHANGED
|
@@ -42871,7 +42871,7 @@ var {
|
|
|
42871
42871
|
// package.json
|
|
42872
42872
|
var package_default = {
|
|
42873
42873
|
name: "@browsermation/test",
|
|
42874
|
-
version: "0.0.
|
|
42874
|
+
version: "0.0.13",
|
|
42875
42875
|
description: "The testing platform for Playwright by Browsermation.",
|
|
42876
42876
|
main: "./dist/index.js",
|
|
42877
42877
|
types: "./dist/index.d.ts",
|
|
@@ -42898,7 +42898,7 @@ var package_default = {
|
|
|
42898
42898
|
],
|
|
42899
42899
|
scripts: {
|
|
42900
42900
|
"build:cli": "esbuild src/bin/cli.ts --bundle --platform=node --external:playwright --target=node22 --outfile=dist/bin/cli.js",
|
|
42901
|
-
"build:reporter": "esbuild src/reporter.ts --bundle --platform=node --external:playwright --target=node22 --outfile=dist/reporter.js",
|
|
42901
|
+
"build:reporter": "esbuild src/reporter/reporter.ts --bundle --platform=node --external:playwright --target=node22 --outfile=dist/reporter.js",
|
|
42902
42902
|
"build:index": "esbuild src/index.ts --bundle --platform=node --external:playwright --target=node22 --outfile=dist/index.js",
|
|
42903
42903
|
"build:types": "tsc --emitDeclarationOnly --outDir dist",
|
|
42904
42904
|
build: "rm -rf dist && npm run build:cli && npm run build:index && npm run build:types",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@browsermation/test",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.13",
|
|
4
4
|
"description": "The testing platform for Playwright by Browsermation.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
],
|
|
28
28
|
"scripts": {
|
|
29
29
|
"build:cli": "esbuild src/bin/cli.ts --bundle --platform=node --external:playwright --target=node22 --outfile=dist/bin/cli.js",
|
|
30
|
-
"build:reporter": "esbuild src/reporter.ts --bundle --platform=node --external:playwright --target=node22 --outfile=dist/reporter.js",
|
|
30
|
+
"build:reporter": "esbuild src/reporter/reporter.ts --bundle --platform=node --external:playwright --target=node22 --outfile=dist/reporter.js",
|
|
31
31
|
"build:index": "esbuild src/index.ts --bundle --platform=node --external:playwright --target=node22 --outfile=dist/index.js",
|
|
32
32
|
"build:types": "tsc --emitDeclarationOnly --outDir dist",
|
|
33
33
|
"build": "rm -rf dist && npm run build:cli && npm run build:index && npm run build:types",
|