wrapito 13.4.1 → 13.4.2-beta.0
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/package.json +14 -6
- /package/dist/{index.js → index.cjs} +0 -0
package/package.json
CHANGED
|
@@ -1,17 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wrapito",
|
|
3
|
-
"version": "13.4.
|
|
3
|
+
"version": "13.4.2-beta.0",
|
|
4
4
|
"packageManager": "npm@10.8.2",
|
|
5
5
|
"description": "🌯 🌯 Wrap you tests so that you can test both behaviour and components with less effort.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"exports": {
|
|
8
8
|
".": {
|
|
9
|
-
"
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
"import": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"default": "./dist/index.mjs"
|
|
12
|
+
},
|
|
13
|
+
"require": {
|
|
14
|
+
"types": "./dist/index.d.cts",
|
|
15
|
+
"default": "./dist/index.cjs"
|
|
16
|
+
}
|
|
12
17
|
}
|
|
13
18
|
},
|
|
14
|
-
"main": "./dist/index.
|
|
19
|
+
"main": "./dist/index.cjs",
|
|
15
20
|
"module": "./dist/index.mjs",
|
|
16
21
|
"types": "./dist/index.d.ts",
|
|
17
22
|
"files": [
|
|
@@ -27,7 +32,9 @@
|
|
|
27
32
|
"build:types": "tsc --build",
|
|
28
33
|
"publish-package": "npm run build && npm publish",
|
|
29
34
|
"publish-package:beta": "npm run build && npm publish --tag beta",
|
|
30
|
-
"typecheck": "tsc --noEmit dist/index.d.ts"
|
|
35
|
+
"typecheck": "tsc --noEmit dist/index.d.ts",
|
|
36
|
+
"check:exports": "attw --pack .",
|
|
37
|
+
"prepublishOnly": "npm run build && npm run check:exports"
|
|
31
38
|
},
|
|
32
39
|
"repository": {
|
|
33
40
|
"type": "git",
|
|
@@ -60,6 +67,7 @@
|
|
|
60
67
|
"whatwg-fetch": "^3.6.20"
|
|
61
68
|
},
|
|
62
69
|
"devDependencies": {
|
|
70
|
+
"@arethetypeswrong/cli": "0.18.3",
|
|
63
71
|
"@testing-library/jest-dom": "^6.9.1",
|
|
64
72
|
"@testing-library/react": "^16.3.2",
|
|
65
73
|
"@types/deep-equal": "^1.0.4",
|
|
File without changes
|