@aljazmc/testero 0.1.0 → 0.1.1
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/bin/types/index.d.ts +1 -0
- package/package.json +2 -9
- package/bin/index.js +0 -3
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aljazmc/testero",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "A simple test runner. Easy to understand, easy to customize and easy to extend.",
|
|
5
5
|
"author": "aljazmc",
|
|
6
6
|
"license": "MIT",
|
|
@@ -24,20 +24,13 @@
|
|
|
24
24
|
"engines": {
|
|
25
25
|
"node": "^20.19.0 || ^22.13.0 || >=24"
|
|
26
26
|
},
|
|
27
|
-
"main": "./bin/index.js",
|
|
28
27
|
"types": "./bin/types/index.d.js",
|
|
29
28
|
"bin": "./bin/main.js",
|
|
30
29
|
"exports": {
|
|
31
30
|
".": {
|
|
32
31
|
"types": "./bin/types/index.d.ts",
|
|
33
|
-
"default": "./bin/
|
|
32
|
+
"default": "./bin/main.js"
|
|
34
33
|
},
|
|
35
34
|
"./package.json": "./package.json"
|
|
36
|
-
},
|
|
37
|
-
"scripts": {
|
|
38
|
-
"build": "yarn b:testero",
|
|
39
|
-
"checktypes": "yarn ct:testero",
|
|
40
|
-
"complete": "yarn build && yarn exporttypes",
|
|
41
|
-
"exporttypes": "yarn et:testero"
|
|
42
35
|
}
|
|
43
36
|
}
|
package/bin/index.js
DELETED