@kitschpatrol/shared-config 2.0.0 → 2.0.1
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/cli.js +1 -0
- package/package.json +4 -4
package/cli.js
CHANGED
|
@@ -36,6 +36,7 @@ async function main() {
|
|
|
36
36
|
for (const capability of capabilitiesWithInit) {
|
|
37
37
|
console.log(`${capability.name} Running command: ${capability.command} --init`);
|
|
38
38
|
await $`${capability.command} --init`;
|
|
39
|
+
console.log('\n');
|
|
39
40
|
}
|
|
40
41
|
console.log('Initialization complete.');
|
|
41
42
|
} else if (args.fix) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kitschpatrol/shared-config",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Linting and formatting for web projects.",
|
|
6
6
|
"repository": {
|
|
@@ -30,13 +30,13 @@
|
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"minimist": "^1.2.8",
|
|
32
32
|
"zx": "^7.2.3",
|
|
33
|
-
"@kitschpatrol/markdownlint-config": "2.0.0",
|
|
34
33
|
"@kitschpatrol/cspell-config": "2.0.0",
|
|
34
|
+
"@kitschpatrol/eslint-config": "2.0.0",
|
|
35
|
+
"@kitschpatrol/markdownlint-config": "2.0.0",
|
|
35
36
|
"@kitschpatrol/npm-config": "2.0.0",
|
|
36
37
|
"@kitschpatrol/stylelint-config": "2.0.0",
|
|
37
38
|
"@kitschpatrol/vscode-config": "2.0.0",
|
|
38
|
-
"@kitschpatrol/prettier-config": "2.0.0"
|
|
39
|
-
"@kitschpatrol/eslint-config": "2.0.0"
|
|
39
|
+
"@kitschpatrol/prettier-config": "2.0.0"
|
|
40
40
|
},
|
|
41
41
|
"publishConfig": {
|
|
42
42
|
"access": "public"
|