upgrade-rspeedy 0.8.7 → 0.9.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/CHANGELOG.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # upgrade-rspeedy
2
2
 
3
+ ## 0.9.0
4
+
3
5
  ## 0.8.7
4
6
 
5
7
  ## 0.8.6
@@ -2023,10 +2023,7 @@ Expecting one of '${allowedValues.join("', '")}'`);
2023
2023
  const wrappedLines = [];
2024
2024
  rawLines.forEach((line)=>{
2025
2025
  const chunks = line.match(chunkPattern);
2026
- if (null === chunks) {
2027
- wrappedLines.push('');
2028
- return;
2029
- }
2026
+ if (null === chunks) return void wrappedLines.push('');
2030
2027
  let sumChunks = [
2031
2028
  chunks.shift()
2032
2029
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "upgrade-rspeedy",
3
- "version": "0.8.7",
3
+ "version": "0.9.0",
4
4
  "description": "Upgrade Rspeedy-related packages",
5
5
  "keywords": [
6
6
  "webpack",
@@ -31,21 +31,21 @@
31
31
  ],
32
32
  "devDependencies": {
33
33
  "@lynx-js/types": "^3.2.0",
34
- "@rsbuild/plugin-less": "1.1.1",
35
- "@rsbuild/plugin-sass": "1.2.2",
34
+ "@rsbuild/plugin-less": "1.2.1",
35
+ "@rsbuild/plugin-sass": "1.3.1",
36
36
  "commander": "^13.1.0",
37
37
  "detect-indent": "^7.0.1",
38
38
  "memfs": "^4.17.0",
39
39
  "picocolors": "^1.1.1",
40
- "rsbuild-plugin-tailwindcss": "0.2.0",
40
+ "rsbuild-plugin-tailwindcss": "0.2.1",
41
41
  "rslog": "^1.2.3",
42
- "type-fest": "^4.38.0",
43
- "@lynx-js/qrcode-rsbuild-plugin": "0.3.4",
44
- "@lynx-js/react": "0.106.2",
45
- "@lynx-js/react-rsbuild-plugin": "0.9.4",
46
- "@lynx-js/rspeedy": "0.8.7",
47
- "@lynx-js/web-core": "0.10.0",
48
- "@lynx-js/web-elements": "0.5.2"
42
+ "type-fest": "^4.39.0",
43
+ "@lynx-js/qrcode-rsbuild-plugin": "0.3.5",
44
+ "@lynx-js/react": "0.106.3",
45
+ "@lynx-js/react-rsbuild-plugin": "0.9.5",
46
+ "@lynx-js/rspeedy": "0.9.0",
47
+ "@lynx-js/web-core": "0.10.1",
48
+ "@lynx-js/web-elements": "0.5.3"
49
49
  },
50
50
  "engines": {
51
51
  "node": ">=18"