@rife/config 0.0.5-beta.2 → 0.0.5-beta.21

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/.prettierrc.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * @type {any}
5
5
  */
6
6
  module.exports = {
7
- printWidth: 150,
7
+ printWidth: 135,
8
8
  useTabs: false, // 缩进使用空格
9
9
  tabWidth: 4,
10
10
  semi: true, // 强制加分号
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rife/config",
3
- "version": "0.0.5-beta.2",
3
+ "version": "0.0.5-beta.21",
4
4
  "description": "",
5
5
  "files": [
6
6
  "tsconfig.json",
@@ -9,22 +9,25 @@
9
9
  ".stylelintrc.js"
10
10
  ],
11
11
  "dependencies": {
12
+ "@jest/types": "^29.6.3",
12
13
  "@swc/helpers": "^0.5.1",
13
- "postcss-less": "^6.0.0",
14
- "postcss-styled-syntax": "^0.4.0",
15
- "stylelint": "^15.7.0",
16
- "stylelint-config-recess-order": "^4.2.0",
17
- "tslib": "^2.5.3",
18
- "typescript": "^5.1.3"
19
- },
20
- "devDependencies": {
14
+ "@types/jest": "^29.5.2",
21
15
  "@types/node": "^20.2.5",
22
16
  "@typescript-eslint/eslint-plugin": "^5.59.8",
23
17
  "@typescript-eslint/parser": "^5.59.8",
24
18
  "eslint": "^8.42.0",
19
+ "eslint-config-next": "14.0.3",
25
20
  "eslint-config-prettier": "^8.8.0",
26
21
  "eslint-plugin-import": "^2.27.5",
27
- "prettier": "^2.8.8"
22
+ "postcss-less": "^6.0.0",
23
+ "postcss-styled-syntax": "^0.4.0",
24
+ "prettier": "^3.1.0",
25
+ "stylelint": "^15.7.0",
26
+ "stylelint-config-recess-order": "^4.2.0",
27
+ "tslib": "^2.6.2",
28
+ "typescript": "^5.3.2"
28
29
  },
29
- "scripts": {}
30
+ "scripts": {
31
+ "format": "syncpack --config syncpack.config.js"
32
+ }
30
33
  }
package/tsconfig.json CHANGED
@@ -22,7 +22,8 @@
22
22
  "importHelpers": true,
23
23
  "jsx": "react",
24
24
  "useUnknownInCatchVariables": false,
25
- "forceConsistentCasingInFileNames": true
25
+ "forceConsistentCasingInFileNames": true,
26
+ "incremental": true
26
27
  },
27
28
  "include": ["./src/**/*"]
28
29
  }