@kitschpatrol/repo-config 3.0.0 → 3.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/init/.gitignore +21 -0
- package/init/.npmrc +12 -0
- package/package.json +3 -3
package/init/.gitignore
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# Git Ignore
|
|
2
|
+
# Also used by CSpell and Stylelint
|
|
3
|
+
|
|
4
|
+
# @kitschpatrol/repo-config boilerplate
|
|
5
|
+
!.env.example
|
|
6
|
+
.astro/
|
|
7
|
+
.DS_Store
|
|
8
|
+
.env
|
|
9
|
+
.env.*
|
|
10
|
+
.svelte-kit/
|
|
11
|
+
{tmp,temp}/
|
|
12
|
+
**/*.min.js
|
|
13
|
+
/scratch/
|
|
14
|
+
bower_components/
|
|
15
|
+
build/
|
|
16
|
+
coverage/
|
|
17
|
+
dist/
|
|
18
|
+
node_modules/
|
|
19
|
+
vendor/
|
|
20
|
+
|
|
21
|
+
# Customizations
|
package/init/.npmrc
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
publish-branch=main
|
|
2
|
+
|
|
3
|
+
# required for pnpm
|
|
4
|
+
# public-hoist-pattern[]=@types* TBD
|
|
5
|
+
public-hoist-pattern[]=@kitschpatrol/repo-config
|
|
6
|
+
public-hoist-pattern[]=@kitschpatrol/vscode-config
|
|
7
|
+
public-hoist-pattern[]=*cspell*
|
|
8
|
+
public-hoist-pattern[]=*eslint*
|
|
9
|
+
public-hoist-pattern[]=*markdownlint*
|
|
10
|
+
public-hoist-pattern[]=*prettier*
|
|
11
|
+
public-hoist-pattern[]=*remark*
|
|
12
|
+
public-hoist-pattern[]=*stylelint*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kitschpatrol/repo-config",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Initial repo configuration for @kitschpatrol/shared-config",
|
|
6
6
|
"repository": {
|
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
"repo-config": "bin/cli.js"
|
|
27
27
|
},
|
|
28
28
|
"files": [
|
|
29
|
-
"bin",
|
|
30
|
-
"init"
|
|
29
|
+
"bin/*",
|
|
30
|
+
"init/*"
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"execa": "^8.0.1",
|