easy-soft-develop 2.0.158 → 2.0.159

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "easy-soft-develop",
3
- "version": "2.0.158",
3
+ "version": "2.0.159",
4
4
  "description": "",
5
5
  "homepage": "https://github.com/kityandhero/easy-soft-develop#readme",
6
6
  "bugs": {
@@ -5,17 +5,14 @@ const folderPath = './develop/config/lint-staged';
5
5
  const contentFileContent = `${fileGlobalHeader}
6
6
  const content = \`{
7
7
  "*.{md,json}": ["npx prettier --cache --write"],
8
- "*.{js,jsx}": [
9
- "npx eslint --ext .js,.jsx,.ts,.tsx",
10
- "npx prettier --cache --write"
8
+ "*.{js,jsx}": ["npx eslint --ext .js,.jsx", "npx prettier --cache --write"],
9
+ "*.{ts,tsx}": [
10
+ "npx eslint --ext .ts,.tsx",
11
+ "npx prettier --cache --parser=typescript --write"
11
12
  ],
12
13
  "*.{css,less,scss}": [
13
14
  "stylelint --allow-empty-input",
14
15
  "npx prettier --cache --write"
15
- ],
16
- "*.{ts,tsx}": [
17
- "npx eslint --ext .js,.jsx,.ts,.tsx",
18
- "npx prettier --cache --parser=typescript --write"
19
16
  ]
20
17
  }
21
18
  \`;