@lynx-js/rspeedy 0.9.6 → 0.9.7
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/CHANGELOG.md +9 -0
- package/dist/cli/main.js +6 -6
- package/dist/index.js +2 -1
- package/dist/src_cli_build_ts.js +1 -0
- package/dist/src_cli_commands_ts.js +1 -1
- package/dist/src_cli_dev_ts.js +1 -0
- package/dist/src_cli_inspect_ts.js +1 -0
- package/dist/src_cli_preview_ts.js +1 -0
- package/dist/src_version_ts.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @lynx-js/rspeedy
|
|
2
2
|
|
|
3
|
+
## 0.9.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- The default value of `output.inlineScripts` should be `true`. ([#915](https://github.com/lynx-family/lynx-stack/pull/915))
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`c210b79`](https://github.com/lynx-family/lynx-stack/commit/c210b79319cf014c89c2215f5e0940163eccfa1e)]:
|
|
10
|
+
- @lynx-js/chunk-loading-webpack-plugin@0.3.0
|
|
11
|
+
|
|
3
12
|
## 0.9.6
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
package/dist/cli/main.js
CHANGED
|
@@ -194,9 +194,9 @@ var __webpack_modules__ = {
|
|
|
194
194
|
NW: ()=>debugList,
|
|
195
195
|
fF: ()=>debug
|
|
196
196
|
});
|
|
197
|
-
var
|
|
198
|
-
var
|
|
199
|
-
var
|
|
197
|
+
var _rsbuild_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("@rsbuild/core");
|
|
198
|
+
var picocolors__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__("../../../node_modules/.pnpm/picocolors@1.1.1/node_modules/picocolors/picocolors.js");
|
|
199
|
+
var picocolors__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/ __webpack_require__.n(picocolors__WEBPACK_IMPORTED_MODULE_1__);
|
|
200
200
|
const isDebug = ()=>{
|
|
201
201
|
if (!process.env['DEBUG']) return false;
|
|
202
202
|
const values = process.env['DEBUG'].toLocaleLowerCase().split(',');
|
|
@@ -206,12 +206,12 @@ var __webpack_modules__ = {
|
|
|
206
206
|
'*'
|
|
207
207
|
].some((key)=>values.includes(key));
|
|
208
208
|
};
|
|
209
|
-
const label =
|
|
209
|
+
const label = picocolors__WEBPACK_IMPORTED_MODULE_1___default().bgCyan('lynx');
|
|
210
210
|
const debug = (message)=>{
|
|
211
211
|
if (isDebug()) {
|
|
212
212
|
const result = 'string' == typeof message ? message : message();
|
|
213
|
-
|
|
214
|
-
|
|
213
|
+
_rsbuild_core__WEBPACK_IMPORTED_MODULE_0__.logger.level = 'verbose';
|
|
214
|
+
_rsbuild_core__WEBPACK_IMPORTED_MODULE_0__.logger.debug(`${label} ${result}`);
|
|
215
215
|
}
|
|
216
216
|
};
|
|
217
217
|
const debugList = (prefix, messages)=>debug(()=>`${prefix} ${[
|
package/dist/index.js
CHANGED
|
@@ -112,7 +112,7 @@ var __webpack_modules__ = {
|
|
|
112
112
|
});
|
|
113
113
|
var core_ = __webpack_require__("@rsbuild/core");
|
|
114
114
|
var package_namespaceObject = {
|
|
115
|
-
i8: "0.9.
|
|
115
|
+
i8: "0.9.7"
|
|
116
116
|
};
|
|
117
117
|
const version = package_namespaceObject.i8;
|
|
118
118
|
const rspackVersion = core_.rspack.rspackVersion;
|
|
@@ -344,6 +344,7 @@ function toRsbuildConfig(config) {
|
|
|
344
344
|
dataUriLimit: config.output?.dataUriLimit ?? defaultDataUriLimit,
|
|
345
345
|
distPath: config.output?.distPath,
|
|
346
346
|
filenameHash: config.output?.filenameHash,
|
|
347
|
+
inlineScripts: config.output?.inlineScripts,
|
|
347
348
|
legalComments: config.output?.legalComments ?? 'none',
|
|
348
349
|
polyfill: 'off',
|
|
349
350
|
sourceMap: config.output?.sourceMap
|
package/dist/src_cli_build_ts.js
CHANGED
|
@@ -231,6 +231,7 @@ export const __webpack_modules__ = {
|
|
|
231
231
|
dataUriLimit: config.output?.dataUriLimit ?? defaultDataUriLimit,
|
|
232
232
|
distPath: config.output?.distPath,
|
|
233
233
|
filenameHash: config.output?.filenameHash,
|
|
234
|
+
inlineScripts: config.output?.inlineScripts,
|
|
234
235
|
legalComments: config.output?.legalComments ?? 'none',
|
|
235
236
|
polyfill: 'off',
|
|
236
237
|
sourceMap: config.output?.sourceMap
|
|
@@ -40,7 +40,7 @@ export const __webpack_modules__ = {
|
|
|
40
40
|
});
|
|
41
41
|
var core_ = __webpack_require__("@rsbuild/core");
|
|
42
42
|
var package_namespaceObject = {
|
|
43
|
-
i8: "0.9.
|
|
43
|
+
i8: "0.9.7"
|
|
44
44
|
};
|
|
45
45
|
const version = package_namespaceObject.i8;
|
|
46
46
|
const rspackVersion = core_.rspack.rspackVersion;
|
package/dist/src_cli_dev_ts.js
CHANGED
|
@@ -274,6 +274,7 @@ export const __webpack_modules__ = {
|
|
|
274
274
|
dataUriLimit: config.output?.dataUriLimit ?? defaultDataUriLimit,
|
|
275
275
|
distPath: config.output?.distPath,
|
|
276
276
|
filenameHash: config.output?.filenameHash,
|
|
277
|
+
inlineScripts: config.output?.inlineScripts,
|
|
277
278
|
legalComments: config.output?.legalComments ?? 'none',
|
|
278
279
|
polyfill: 'off',
|
|
279
280
|
sourceMap: config.output?.sourceMap
|
|
@@ -234,6 +234,7 @@ export const __webpack_modules__ = {
|
|
|
234
234
|
dataUriLimit: config.output?.dataUriLimit ?? defaultDataUriLimit,
|
|
235
235
|
distPath: config.output?.distPath,
|
|
236
236
|
filenameHash: config.output?.filenameHash,
|
|
237
|
+
inlineScripts: config.output?.inlineScripts,
|
|
237
238
|
legalComments: config.output?.legalComments ?? 'none',
|
|
238
239
|
polyfill: 'off',
|
|
239
240
|
sourceMap: config.output?.sourceMap
|
|
@@ -236,6 +236,7 @@ export const __webpack_modules__ = {
|
|
|
236
236
|
dataUriLimit: config.output?.dataUriLimit ?? defaultDataUriLimit,
|
|
237
237
|
distPath: config.output?.distPath,
|
|
238
238
|
filenameHash: config.output?.filenameHash,
|
|
239
|
+
inlineScripts: config.output?.inlineScripts,
|
|
239
240
|
legalComments: config.output?.legalComments ?? 'none',
|
|
240
241
|
polyfill: 'off',
|
|
241
242
|
sourceMap: config.output?.sourceMap
|
package/dist/src_version_ts.js
CHANGED
|
@@ -10,7 +10,7 @@ export const __webpack_modules__ = {
|
|
|
10
10
|
});
|
|
11
11
|
var core_ = __webpack_require__("@rsbuild/core");
|
|
12
12
|
var package_namespaceObject = {
|
|
13
|
-
i8: "0.9.
|
|
13
|
+
i8: "0.9.7"
|
|
14
14
|
};
|
|
15
15
|
const version = package_namespaceObject.i8;
|
|
16
16
|
const rspackVersion = core_.rspack.rspackVersion;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lynx-js/rspeedy",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.7",
|
|
4
4
|
"description": "A webpack/rspack-based frontend toolchain for Lynx",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"webpack",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"@rsbuild/core": "1.3.21",
|
|
50
50
|
"@rsbuild/plugin-css-minimizer": "1.0.2",
|
|
51
51
|
"@rsdoctor/rspack-plugin": "1.1.2",
|
|
52
|
-
"@lynx-js/chunk-loading-webpack-plugin": "^0.
|
|
52
|
+
"@lynx-js/chunk-loading-webpack-plugin": "^0.3.0",
|
|
53
53
|
"@lynx-js/webpack-dev-transport": "^0.1.3",
|
|
54
54
|
"@lynx-js/websocket": "^0.0.4"
|
|
55
55
|
},
|