@baic/yolk-cli 2.1.0-alpha.222 → 2.1.0-alpha.223
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/es/.lintstagedrc.js +3 -3
- package/lib/.lintstagedrc.js +3 -3
- package/package.json +3 -3
package/es/.lintstagedrc.js
CHANGED
|
@@ -29,10 +29,10 @@ const yolkConfig = getYolkConfig();
|
|
|
29
29
|
const isStrict = yolkConfig.strict !== false;
|
|
30
30
|
|
|
31
31
|
const prettierCLI =
|
|
32
|
-
'prettier --write --cache --
|
|
32
|
+
'prettier --write --cache --loglevel=error';
|
|
33
33
|
const eslintCLI = `eslint --fix ${
|
|
34
34
|
isStrict ? '--no-inline-config' : ''
|
|
35
|
-
} --no-error-on-unmatched-pattern --cache --cache-
|
|
35
|
+
} --no-error-on-unmatched-pattern --cache --cache-location=${join(
|
|
36
36
|
process.cwd(),
|
|
37
37
|
'node_modules',
|
|
38
38
|
'.cache',
|
|
@@ -42,7 +42,7 @@ const eslintCLI = `eslint --fix ${
|
|
|
42
42
|
.join(' ')}`;
|
|
43
43
|
const stylelintCLI = `stylelint --fix ${
|
|
44
44
|
isStrict ? '--ignore-disables' : ''
|
|
45
|
-
} --allow-empty-input --cache --cache-
|
|
45
|
+
} --allow-empty-input --cache --cache-location=${join(
|
|
46
46
|
process.cwd(),
|
|
47
47
|
'node_modules',
|
|
48
48
|
'.cache',
|
package/lib/.lintstagedrc.js
CHANGED
|
@@ -29,10 +29,10 @@ const yolkConfig = getYolkConfig();
|
|
|
29
29
|
const isStrict = yolkConfig.strict !== false;
|
|
30
30
|
|
|
31
31
|
const prettierCLI =
|
|
32
|
-
'prettier --write --cache --
|
|
32
|
+
'prettier --write --cache --loglevel=error';
|
|
33
33
|
const eslintCLI = `eslint --fix ${
|
|
34
34
|
isStrict ? '--no-inline-config' : ''
|
|
35
|
-
} --no-error-on-unmatched-pattern --cache --cache-
|
|
35
|
+
} --no-error-on-unmatched-pattern --cache --cache-location=${join(
|
|
36
36
|
process.cwd(),
|
|
37
37
|
'node_modules',
|
|
38
38
|
'.cache',
|
|
@@ -42,7 +42,7 @@ const eslintCLI = `eslint --fix ${
|
|
|
42
42
|
.join(' ')}`;
|
|
43
43
|
const stylelintCLI = `stylelint --fix ${
|
|
44
44
|
isStrict ? '--ignore-disables' : ''
|
|
45
|
-
} --allow-empty-input --cache --cache-
|
|
45
|
+
} --allow-empty-input --cache --cache-location=${join(
|
|
46
46
|
process.cwd(),
|
|
47
47
|
'node_modules',
|
|
48
48
|
'.cache',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@baic/yolk-cli",
|
|
3
|
-
"version": "2.1.0-alpha.
|
|
3
|
+
"version": "2.1.0-alpha.223",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/303394539/yolk.git"
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"prebundle": "father prebundle"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@baic/yolk-prebundle": "^2.1.0-alpha.
|
|
28
|
+
"@baic/yolk-prebundle": "^2.1.0-alpha.223",
|
|
29
29
|
"@democrance/imagemin-lint-staged": "2.x",
|
|
30
30
|
"@types/inquirer": "8.x",
|
|
31
31
|
"@types/lint-staged": "~13.x",
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"publishConfig": {
|
|
59
59
|
"access": "public"
|
|
60
60
|
},
|
|
61
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "047d7c3cfbd8ea877efb2cc128be1d4bac6f7608"
|
|
62
62
|
}
|