@browsermation/test 0.0.8 → 0.0.9
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 +8 -5
- package/package.json +8 -5
package/dist/bin/cli.js
CHANGED
|
@@ -42871,15 +42871,18 @@ var {
|
|
|
42871
42871
|
// package.json
|
|
42872
42872
|
var package_default = {
|
|
42873
42873
|
name: "@browsermation/test",
|
|
42874
|
-
version: "0.0.
|
|
42874
|
+
version: "0.0.9",
|
|
42875
42875
|
description: "The testing platform for Playwright by Browsermation.",
|
|
42876
|
-
main: "dist/index.js",
|
|
42877
|
-
types: "dist/index.d.ts",
|
|
42876
|
+
main: "./dist/index.js",
|
|
42877
|
+
types: "./dist/index.d.ts",
|
|
42878
42878
|
exports: {
|
|
42879
42879
|
".": {
|
|
42880
42880
|
import: "./dist/index.js",
|
|
42881
|
-
|
|
42882
|
-
|
|
42881
|
+
require: "./dist/index.js",
|
|
42882
|
+
types: "./dist/index.d.ts",
|
|
42883
|
+
default: "./dist/index.js"
|
|
42884
|
+
},
|
|
42885
|
+
"./package.json": "./package.json"
|
|
42883
42886
|
},
|
|
42884
42887
|
bin: {
|
|
42885
42888
|
browsermation: "dist/bin/cli.js"
|
package/package.json
CHANGED
|
@@ -1,14 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@browsermation/test",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.9",
|
|
4
4
|
"description": "The testing platform for Playwright by Browsermation.",
|
|
5
|
-
"main": "dist/index.js",
|
|
6
|
-
"types": "dist/index.d.ts",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"types": "./dist/index.d.ts",
|
|
7
7
|
"exports": {
|
|
8
8
|
".": {
|
|
9
9
|
"import": "./dist/index.js",
|
|
10
|
-
"
|
|
11
|
-
|
|
10
|
+
"require": "./dist/index.js",
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"default": "./dist/index.js"
|
|
13
|
+
},
|
|
14
|
+
"./package.json": "./package.json"
|
|
12
15
|
},
|
|
13
16
|
"bin": {
|
|
14
17
|
"browsermation": "dist/bin/cli.js"
|