@coherent.js/devtools 1.0.0-rc.2 → 1.0.0-rc.3
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/component-visualizer.js +374 -0
- package/dist/component-visualizer.js.map +7 -0
- package/dist/enhanced-errors.js +467 -0
- package/dist/enhanced-errors.js.map +7 -0
- package/dist/hybrid-integration-tools.js +460 -0
- package/dist/hybrid-integration-tools.js.map +7 -0
- package/dist/index.js +1 -2
- package/dist/index.js.map +2 -2
- package/package.json +15 -38
package/package.json
CHANGED
|
@@ -1,70 +1,47 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coherent.js/devtools",
|
|
3
|
-
"version": "1.0.0-rc.
|
|
3
|
+
"version": "1.0.0-rc.3",
|
|
4
4
|
"description": "Developer tools for Coherent.js applications - tree-shakable modular exports",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"types": "./types/index.d.ts",
|
|
8
8
|
"exports": {
|
|
9
9
|
".": {
|
|
10
|
-
"
|
|
11
|
-
"import": "./dist/index.js"
|
|
12
|
-
"require": "./dist/index.cjs"
|
|
10
|
+
"types": "./types/index.d.ts",
|
|
11
|
+
"import": "./dist/index.js"
|
|
13
12
|
},
|
|
14
13
|
"./visualizer": {
|
|
15
|
-
"
|
|
16
|
-
"import": "./dist/component-visualizer.js",
|
|
17
|
-
"require": "./dist/component-visualizer.cjs"
|
|
14
|
+
"import": "./dist/component-visualizer.js"
|
|
18
15
|
},
|
|
19
16
|
"./performance": {
|
|
20
|
-
"
|
|
21
|
-
"import": "./dist/performance/index.js",
|
|
22
|
-
"require": "./dist/performance/index.cjs"
|
|
17
|
+
"import": "./dist/performance/index.js"
|
|
23
18
|
},
|
|
24
19
|
"./performance/cache": {
|
|
25
|
-
"
|
|
26
|
-
"import": "./dist/performance/cache.js",
|
|
27
|
-
"require": "./dist/performance/cache.cjs"
|
|
20
|
+
"import": "./dist/performance/cache.js"
|
|
28
21
|
},
|
|
29
22
|
"./performance/code-splitting": {
|
|
30
|
-
"
|
|
31
|
-
"import": "./dist/performance/code-splitting.js",
|
|
32
|
-
"require": "./dist/performance/code-splitting.cjs"
|
|
23
|
+
"import": "./dist/performance/code-splitting.js"
|
|
33
24
|
},
|
|
34
25
|
"./performance/lazy-loading": {
|
|
35
|
-
"
|
|
36
|
-
"import": "./dist/performance/lazy-loading.js",
|
|
37
|
-
"require": "./dist/performance/lazy-loading.cjs"
|
|
26
|
+
"import": "./dist/performance/lazy-loading.js"
|
|
38
27
|
},
|
|
39
28
|
"./performance/dashboard": {
|
|
40
|
-
"
|
|
41
|
-
"import": "./dist/performance-dashboard.js",
|
|
42
|
-
"require": "./dist/performance-dashboard.cjs"
|
|
29
|
+
"import": "./dist/performance-dashboard.js"
|
|
43
30
|
},
|
|
44
31
|
"./errors": {
|
|
45
|
-
"
|
|
46
|
-
"import": "./dist/enhanced-errors.js",
|
|
47
|
-
"require": "./dist/enhanced-errors.cjs"
|
|
32
|
+
"import": "./dist/enhanced-errors.js"
|
|
48
33
|
},
|
|
49
34
|
"./hybrid": {
|
|
50
|
-
"
|
|
51
|
-
"import": "./dist/hybrid-integration-tools.js",
|
|
52
|
-
"require": "./dist/hybrid-integration-tools.cjs"
|
|
35
|
+
"import": "./dist/hybrid-integration-tools.js"
|
|
53
36
|
},
|
|
54
37
|
"./inspector": {
|
|
55
|
-
"
|
|
56
|
-
"import": "./dist/inspector.js",
|
|
57
|
-
"require": "./dist/inspector.cjs"
|
|
38
|
+
"import": "./dist/inspector.js"
|
|
58
39
|
},
|
|
59
40
|
"./profiler": {
|
|
60
|
-
"
|
|
61
|
-
"import": "./dist/profiler.js",
|
|
62
|
-
"require": "./dist/profiler.cjs"
|
|
41
|
+
"import": "./dist/profiler.js"
|
|
63
42
|
},
|
|
64
43
|
"./logger": {
|
|
65
|
-
"
|
|
66
|
-
"import": "./dist/logger.js",
|
|
67
|
-
"require": "./dist/logger.cjs"
|
|
44
|
+
"import": "./dist/logger.js"
|
|
68
45
|
},
|
|
69
46
|
"./package.json": "./package.json"
|
|
70
47
|
},
|
|
@@ -85,7 +62,7 @@
|
|
|
85
62
|
"author": "Coherent.js Team",
|
|
86
63
|
"license": "MIT",
|
|
87
64
|
"peerDependencies": {
|
|
88
|
-
"@coherent.js/core": "1.0.0-rc.
|
|
65
|
+
"@coherent.js/core": "1.0.0-rc.3"
|
|
89
66
|
},
|
|
90
67
|
"repository": {
|
|
91
68
|
"type": "git",
|