@rindo/core 4.27.1 → 4.28.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/LICENSE.md +3 -2
- package/cli/index.cjs +1 -1
- package/cli/index.js +1 -1
- package/cli/package.json +1 -1
- package/compiler/package.json +1 -1
- package/compiler/rindo.js +33075 -38116
- package/dev-server/client/index.js +1 -1
- package/dev-server/client/package.json +1 -1
- package/dev-server/connector.html +3 -3
- package/dev-server/index.js +1 -1
- package/dev-server/package.json +1 -1
- package/dev-server/server-process.js +2 -2
- package/internal/app-data/package.json +1 -1
- package/internal/client/index.js +1 -1
- package/internal/client/package.json +1 -1
- package/internal/client/patch-browser.js +1 -1
- package/internal/hydrate/index.js +1 -1
- package/internal/hydrate/package.json +1 -1
- package/internal/hydrate/runner.js +290 -396
- package/internal/package.json +1 -1
- package/internal/rindo-private.d.ts +0 -1
- package/internal/rindo-public-compiler.d.ts +1 -1
- package/internal/rindo-public-runtime.d.ts +1 -0
- package/internal/testing/package.json +1 -1
- package/mock-doc/index.cjs +1439 -1530
- package/mock-doc/index.js +1439 -1530
- package/mock-doc/package.json +1 -1
- package/package.json +27 -23
- package/screenshot/index.js +1 -1
- package/screenshot/package.json +1 -1
- package/screenshot/pixel-match.js +1 -1
- package/sys/node/autoprefixer.js +2 -2
- package/sys/node/index.js +1 -1
- package/sys/node/node-fetch.js +1 -1
- package/sys/node/package.json +1 -1
- package/sys/node/worker.js +1 -1
- package/testing/index.js +1 -1
- package/testing/package.json +1 -1
package/mock-doc/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rindo/core",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.28.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "./internal/rindo-core/index.cjs",
|
|
6
6
|
"module": "./internal/rindo-core/index.js",
|
|
@@ -24,9 +24,9 @@
|
|
|
24
24
|
],
|
|
25
25
|
"exports": {
|
|
26
26
|
".": {
|
|
27
|
+
"types": "./internal/rindo-core/index.d.ts",
|
|
27
28
|
"import": "./internal/rindo-core/index.js",
|
|
28
|
-
"require": "./internal/rindo-core/index.cjs"
|
|
29
|
-
"types": "./internal/rindo-core/index.d.ts"
|
|
29
|
+
"require": "./internal/rindo-core/index.cjs"
|
|
30
30
|
},
|
|
31
31
|
"./cli": {
|
|
32
32
|
"import": "./cli/index.js",
|
|
@@ -48,40 +48,40 @@
|
|
|
48
48
|
"import": "./internal/testing/*"
|
|
49
49
|
},
|
|
50
50
|
"./internal/app-data": {
|
|
51
|
+
"types": "./internal/app-data/index.d.ts",
|
|
51
52
|
"import": "./internal/app-data/index.js",
|
|
52
|
-
"require": "./internal/app-data/index.cjs"
|
|
53
|
-
"types": "./internal/app-data/index.d.ts"
|
|
53
|
+
"require": "./internal/app-data/index.cjs"
|
|
54
54
|
},
|
|
55
55
|
"./mock-doc": {
|
|
56
|
+
"types": "./mock-doc/index.d.ts",
|
|
56
57
|
"import": "./mock-doc/index.js",
|
|
57
|
-
"require": "./mock-doc/index.cjs"
|
|
58
|
-
"types": "./mock-doc/index.d.ts"
|
|
58
|
+
"require": "./mock-doc/index.cjs"
|
|
59
59
|
},
|
|
60
60
|
"./compiler": {
|
|
61
|
+
"types": "./compiler/rindo.d.ts",
|
|
61
62
|
"import": "./compiler/rindo.js",
|
|
62
|
-
"require": "./compiler/rindo.js"
|
|
63
|
-
"types": "./compiler/rindo.d.ts"
|
|
63
|
+
"require": "./compiler/rindo.js"
|
|
64
64
|
},
|
|
65
65
|
"./compiler/*": {
|
|
66
|
-
"
|
|
67
|
-
"
|
|
66
|
+
"types": "./compiler/*",
|
|
67
|
+
"import": "./compiler/*"
|
|
68
68
|
},
|
|
69
69
|
"./screenshot": {
|
|
70
|
-
"
|
|
71
|
-
"
|
|
70
|
+
"types": "./screenshot/index.d.ts",
|
|
71
|
+
"require": "./screenshot/index.js"
|
|
72
72
|
},
|
|
73
73
|
"./sys/node": {
|
|
74
|
+
"types": "./sys/node/index.d.ts",
|
|
74
75
|
"import": "./sys/node/index.js",
|
|
75
|
-
"require": "./sys/node/index.js"
|
|
76
|
-
"types": "./sys/node/index.d.ts"
|
|
76
|
+
"require": "./sys/node/index.js"
|
|
77
77
|
},
|
|
78
78
|
"./sys/node/*": {
|
|
79
79
|
"import": "./sys/node/*",
|
|
80
80
|
"require": "./sys/node/*"
|
|
81
81
|
},
|
|
82
82
|
"./testing": {
|
|
83
|
-
"import": "./testing/index.js",
|
|
84
83
|
"types": "./testing/index.d.ts",
|
|
84
|
+
"import": "./testing/index.js",
|
|
85
85
|
"require": "./testing/index.js"
|
|
86
86
|
},
|
|
87
87
|
"./testing/jest-preset": {
|
|
@@ -123,11 +123,12 @@
|
|
|
123
123
|
},
|
|
124
124
|
"devDependencies": {
|
|
125
125
|
"@familyjs/prettier-config": "^4.0.0",
|
|
126
|
-
"@
|
|
126
|
+
"@jridgewell/source-map": "^0.3.6",
|
|
127
|
+
"@rollup/plugin-commonjs": "28.0.2",
|
|
127
128
|
"@rollup/plugin-json": "6.1.0",
|
|
128
|
-
"@rollup/plugin-node-resolve": "
|
|
129
|
-
"@rollup/plugin-replace": "
|
|
130
|
-
"@rollup/pluginutils": "5.1.
|
|
129
|
+
"@rollup/plugin-node-resolve": "16.0.0",
|
|
130
|
+
"@rollup/plugin-replace": "6.0.2",
|
|
131
|
+
"@rollup/pluginutils": "5.1.4",
|
|
131
132
|
"@types/eslint": "^8.4.6",
|
|
132
133
|
"@types/exit": "^0.1.31",
|
|
133
134
|
"@types/fs-extra": "^11.0.0",
|
|
@@ -172,21 +173,24 @@
|
|
|
172
173
|
"node-fetch": "3.3.2",
|
|
173
174
|
"open": "^9.0.0",
|
|
174
175
|
"open-in-editor": "2.2.0",
|
|
175
|
-
"parse5": "7.1
|
|
176
|
+
"parse5": "7.2.1",
|
|
176
177
|
"pixelmatch": "5.3.0",
|
|
177
178
|
"postcss": "^8.2.8",
|
|
178
179
|
"prettier": "3.3.1",
|
|
179
180
|
"prompts": "2.4.2",
|
|
180
181
|
"puppeteer": "^24.1.0",
|
|
181
182
|
"rimraf": "^6.0.1",
|
|
182
|
-
"rollup": "
|
|
183
|
+
"rollup": "4.34.9",
|
|
183
184
|
"semver": "^7.3.7",
|
|
184
|
-
"terser": "5.
|
|
185
|
+
"terser": "5.37.0",
|
|
185
186
|
"tsx": "^4.19.2",
|
|
186
187
|
"typescript": "~5.5.4",
|
|
187
188
|
"webpack": "^5.75.0",
|
|
188
189
|
"ws": "8.17.1"
|
|
189
190
|
},
|
|
191
|
+
"optionalDependencies": {
|
|
192
|
+
"@rollup/rollup-linux-x64-gnu": "4.34.9"
|
|
193
|
+
},
|
|
190
194
|
"engines": {
|
|
191
195
|
"node": ">=16.0.0",
|
|
192
196
|
"npm": ">=7.10.0"
|
package/screenshot/index.js
CHANGED
package/screenshot/package.json
CHANGED