@qse/edu-scripts 1.13.11 → 1.13.12

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,9 @@
1
1
  # 更新日志
2
2
 
3
+ ## 1.13.12 (2023-08-24)
4
+
5
+ - fix: 降低级 prettier
6
+
3
7
  ## 1.13.11 (2023-08-10)
4
8
 
5
9
  - feat: mock 支持 `path-to-regexp` 规则
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qse/edu-scripts",
3
- "version": "1.13.11",
3
+ "version": "1.13.12",
4
4
  "author": "Kinoko",
5
5
  "license": "MIT",
6
6
  "description": "教育工程化基础框架",
@@ -74,7 +74,7 @@
74
74
  "postcss-momentum-scrolling": "^3.14.22",
75
75
  "postcss-normalize": "^8.0.1",
76
76
  "postcss-preset-env": "^9.1.0",
77
- "prettier": "^3.0.0",
77
+ "prettier": "^2.8.8",
78
78
  "prettier-plugin-tailwindcss": "^0.4.1",
79
79
  "react-refresh": "^0.14.0",
80
80
  "recursive-readdir": "^2.2.3",
@@ -9,7 +9,7 @@ export type BabelImportPlugin = [
9
9
  camel2DashComponentName?: boolean
10
10
  style?: boolean | 'css' | ((name: string) => string)
11
11
  },
12
- string,
12
+ string
13
13
  ]
14
14
  export type BabelConfig = {
15
15
  presets: any[]