@my-react/react-reconciler-compact 0.0.10 → 0.0.12
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/constants.d.ts +1 -0
- package/constants.js +15 -0
- package/dist/cjs/constants.development.js +18 -0
- package/dist/cjs/constants.production.js +18 -0
- package/dist/cjs/index.development.js +7642 -7525
- package/dist/cjs/index.production.js +6704 -6903
- package/dist/esm/constants.mjs +10 -0
- package/dist/esm/index.mjs +15852 -0
- package/dist/types/api/append.d.ts +1 -1
- package/dist/types/api/append.d.ts.map +1 -1
- package/dist/types/api/create.d.ts.map +1 -1
- package/dist/types/api/update.d.ts.map +1 -1
- package/dist/types/constants.d.ts +8 -0
- package/dist/types/constants.d.ts.map +1 -0
- package/dist/types/dispatch.d.ts +60 -24
- package/dist/types/dispatch.d.ts.map +1 -1
- package/dist/types/dispatchUpdate.d.ts +1 -1
- package/dist/types/dispatchUpdate.d.ts.map +1 -1
- package/dist/types/feature.d.ts +374 -1
- package/dist/types/feature.d.ts.map +1 -1
- package/dist/types/index.d.ts +1 -0
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/polyfill.d.ts +7 -1
- package/dist/types/polyfill.d.ts.map +1 -1
- package/index.d.ts +1 -1
- package/package.json +42 -7
- package/type.d.ts +1 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"polyfill.d.ts","sourceRoot":"","sources":["../../src/polyfill.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"polyfill.d.ts","sourceRoot":"","sources":["../../src/polyfill.ts"],"names":[],"mappings":"AAGA,MAAM,WAAW,uBAAuB;IACtC,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IAC9B,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB;AAED,wBAAsB,gBAAgB,CAAC,GAAG,EAAE,MAAM,EAAE,OAAO,GAAE,uBAA4B,GAAG,OAAO,CAAC,IAAI,CAAC,CA4BxG;AA0TD,wBAAsB,gBAAgB,CAAC,CAAC,GAAG,GAAG,EAAE,GAAG,EAAE,MAAM,EAAE,OAAO,GAAE,uBAA4B,GAAG,OAAO,CAAC,CAAC,CAAC,CAkB9G"}
|
package/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export { default, HostConfig } from "react-reconciler";
|
package/package.json
CHANGED
|
@@ -3,13 +3,16 @@
|
|
|
3
3
|
"description": "@my-react/react-reconciler-compact",
|
|
4
4
|
"author": "MrWangJustToDo",
|
|
5
5
|
"license": "MIT",
|
|
6
|
-
"version": "0.0.
|
|
6
|
+
"version": "0.0.12",
|
|
7
7
|
"main": "index.js",
|
|
8
8
|
"types": "index.d.ts",
|
|
9
9
|
"files": [
|
|
10
10
|
"dist",
|
|
11
|
+
"type.d.ts",
|
|
11
12
|
"index.js",
|
|
12
|
-
"index.d.ts"
|
|
13
|
+
"index.d.ts",
|
|
14
|
+
"constants.js",
|
|
15
|
+
"constants.d.ts"
|
|
13
16
|
],
|
|
14
17
|
"repository": {
|
|
15
18
|
"type": "git",
|
|
@@ -19,9 +22,19 @@
|
|
|
19
22
|
"homepage": "https://mrwangjusttodo.github.io/MyReact",
|
|
20
23
|
"exports": {
|
|
21
24
|
".": {
|
|
22
|
-
"
|
|
25
|
+
"require": "./index.js",
|
|
26
|
+
"import": "./dist/esm/index.mjs",
|
|
23
27
|
"types": "./index.d.ts"
|
|
24
28
|
},
|
|
29
|
+
"./constants": {
|
|
30
|
+
"require": "./constants.js",
|
|
31
|
+
"import": "./dist/esm/constants.mjs",
|
|
32
|
+
"types": "./constants.d.ts"
|
|
33
|
+
},
|
|
34
|
+
"./type": {
|
|
35
|
+
"require": "./type.js",
|
|
36
|
+
"types": "./type.d.ts"
|
|
37
|
+
},
|
|
25
38
|
"./package.json": "./package.json"
|
|
26
39
|
},
|
|
27
40
|
"buildOptions": [
|
|
@@ -34,16 +47,38 @@
|
|
|
34
47
|
"format": "cjs",
|
|
35
48
|
"type": true,
|
|
36
49
|
"multiple": true
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"dir": "./dist",
|
|
53
|
+
"entryFileNames": "esm/index.mjs",
|
|
54
|
+
"format": "esm"
|
|
55
|
+
}
|
|
56
|
+
]
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"input": "./src/constants.ts",
|
|
60
|
+
"output": [
|
|
61
|
+
{
|
|
62
|
+
"dir": "./dist",
|
|
63
|
+
"entryFileNames": "cjs/constants.js",
|
|
64
|
+
"format": "cjs",
|
|
65
|
+
"type": true,
|
|
66
|
+
"multiple": true
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"dir": "./dist",
|
|
70
|
+
"entryFileNames": "esm/constants.mjs",
|
|
71
|
+
"format": "esm"
|
|
37
72
|
}
|
|
38
73
|
]
|
|
39
74
|
}
|
|
40
75
|
],
|
|
41
76
|
"devDependencies": {
|
|
42
|
-
"@my-react/react-reconciler": "^0.3.
|
|
43
|
-
"@my-react/react-shared": "^0.3.
|
|
44
|
-
"@types/react-reconciler": "^0.
|
|
77
|
+
"@my-react/react-reconciler": "^0.3.21",
|
|
78
|
+
"@my-react/react-shared": "^0.3.21",
|
|
79
|
+
"@types/react-reconciler": "^0.32.0"
|
|
45
80
|
},
|
|
46
81
|
"peerDependencies": {
|
|
47
|
-
"@my-react/react": ">=0.3.
|
|
82
|
+
"@my-react/react": ">=0.3.21"
|
|
48
83
|
}
|
|
49
84
|
}
|
package/type.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./dist/types/index";
|