@lynx-js/rspeedy 0.14.2 → 0.14.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/CHANGELOG.md +29 -0
- package/dist/0~src_config_validate_ts.js +2229 -2449
- package/dist/0~src_plugins_dev_plugin_ts.js +30 -4
- package/dist/1~src_cli_init_ts-src_create-rspeedy_ts.js +3 -0
- package/dist/1~src_config_validate_ts.js +2229 -2449
- package/dist/1~src_plugins_dev_plugin_ts.js +30 -4
- package/dist/index.d.ts +56 -2
- package/dist/src_cli_main_ts.js +1 -1
- package/dist/src_index_ts.js +4 -1
- package/package.json +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# @lynx-js/rspeedy
|
|
2
2
|
|
|
3
|
+
## 0.14.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- add a `sourceMap.css` option to emit CSS sourcemaps. ([#2442](https://github.com/lynx-family/lynx-stack/pull/2442))
|
|
8
|
+
|
|
9
|
+
By default, `sourceMap.css` is false. You can set it to true to emit CSS sourcemaps.
|
|
10
|
+
|
|
11
|
+
```js
|
|
12
|
+
import { defineConfig } from '@lynx-js/rspeedy'
|
|
13
|
+
|
|
14
|
+
export default defineConfig({
|
|
15
|
+
output: {
|
|
16
|
+
sourceMap: {
|
|
17
|
+
css: true,
|
|
18
|
+
},
|
|
19
|
+
},
|
|
20
|
+
})
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
- bump rsdoctor to 1.5.6 ([#2410](https://github.com/lynx-family/lynx-stack/pull/2410))
|
|
24
|
+
|
|
25
|
+
- Enable CSS source maps by default in Rspeedy output config. ([#2483](https://github.com/lynx-family/lynx-stack/pull/2483))
|
|
26
|
+
|
|
27
|
+
- Prefer physical routable IPv4 addresses over tunnel and link-local interfaces when resolving the dev host IP for generated preview and bundle URLs. ([#2409](https://github.com/lynx-family/lynx-stack/pull/2409))
|
|
28
|
+
|
|
29
|
+
- Updated dependencies []:
|
|
30
|
+
- @lynx-js/web-rsbuild-server-middleware@0.20.3
|
|
31
|
+
|
|
3
32
|
## 0.14.2
|
|
4
33
|
|
|
5
34
|
### Patch Changes
|