@lynx-js/config-rsbuild-plugin 0.2.1 → 0.2.2
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 +8 -0
- package/dist/index.d.ts +2 -4
- package/package.json +7 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @lynx-js/config-rsbuild-plugin
|
|
2
2
|
|
|
3
|
+
## 0.2.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Use a real exported config key (`alignMouseEventWithW3C`) in the usage ([#3385](https://github.com/lynx-family/lynx-stack/pull/3385))
|
|
8
|
+
examples, and drop the hard-coded link to the development-version config
|
|
9
|
+
reference.
|
|
10
|
+
|
|
3
11
|
## 0.2.1
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
* export default defineConfig({
|
|
12
12
|
* plugins: [
|
|
13
13
|
* pluginLynxConfig({
|
|
14
|
-
*
|
|
14
|
+
* alignMouseEventWithW3C: true,
|
|
15
15
|
* }),
|
|
16
16
|
* ],
|
|
17
17
|
* })
|
|
@@ -25,8 +25,6 @@ import type { RsbuildPlugin } from '@lynx-js/rspeedy';
|
|
|
25
25
|
/**
|
|
26
26
|
* A configuration interface for Lynx Config defined by `@lynx-js/type-config`.
|
|
27
27
|
*
|
|
28
|
-
* See all available options in {@link https://lynxjs.org/next/api/lynx-config/config-reference.html}.
|
|
29
|
-
*
|
|
30
28
|
* @public
|
|
31
29
|
*/
|
|
32
30
|
export declare interface Config extends Config_2, CompilerOptions {
|
|
@@ -83,7 +81,7 @@ export declare interface Options {
|
|
|
83
81
|
* export default defineConfig({
|
|
84
82
|
* plugins: [
|
|
85
83
|
* pluginLynxConfig({
|
|
86
|
-
*
|
|
84
|
+
* alignMouseEventWithW3C: true,
|
|
87
85
|
* }),
|
|
88
86
|
* ],
|
|
89
87
|
* })
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lynx-js/config-rsbuild-plugin",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "An rsbuild plugin for config Lynx Config defined by @lynx-js/type-config.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"rsbuild",
|
|
@@ -35,8 +35,9 @@
|
|
|
35
35
|
"@lynx-js/type-config": "4.1.3"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
+
"@microsoft/api-extractor": "7.58.12",
|
|
38
39
|
"@rsbuild/core": "2.1.7",
|
|
39
|
-
"@rspack/core": "2.1.
|
|
40
|
+
"@rspack/core": "2.1.7",
|
|
40
41
|
"@rstest/core": "0.11.3",
|
|
41
42
|
"@types/object.pick": "^1.3.4",
|
|
42
43
|
"expect-type": "^1.2.1",
|
|
@@ -45,8 +46,8 @@
|
|
|
45
46
|
"terminal-link": "^5.0.0",
|
|
46
47
|
"typia": "12.1.1",
|
|
47
48
|
"typia-rspack-plugin": "3.0.1",
|
|
48
|
-
"@lynx-js/rspeedy": "0.16.
|
|
49
|
-
"@lynx-js/template-webpack-plugin": "0.
|
|
49
|
+
"@lynx-js/rspeedy": "0.16.3",
|
|
50
|
+
"@lynx-js/template-webpack-plugin": "0.15.0",
|
|
50
51
|
"@lynx-js/test-tools": "0.0.0"
|
|
51
52
|
},
|
|
52
53
|
"peerDependencies": {
|
|
@@ -56,9 +57,9 @@
|
|
|
56
57
|
"node": ">=18"
|
|
57
58
|
},
|
|
58
59
|
"scripts": {
|
|
59
|
-
"api-extractor": "api-extractor
|
|
60
|
+
"api-extractor": "node scripts/api-extractor.mjs",
|
|
60
61
|
"build": "rslib build",
|
|
61
62
|
"test": "rstest",
|
|
62
|
-
"test:type": "
|
|
63
|
+
"test:type": "tsc6 --noEmit"
|
|
63
64
|
}
|
|
64
65
|
}
|