@kitschpatrol/create-project 1.0.1 → 1.0.3
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 +4 -2
- package/templates/cli/.gitignore +22 -0
- package/templates/cli/.npmrc +13 -0
- package/templates/cli/pnpm-workspace.yaml +4 -0
- package/templates/cli+library/.gitignore +22 -0
- package/templates/cli+library/.npmrc +13 -0
- package/templates/cli+library/pnpm-workspace.yaml +4 -0
- package/templates/library/.gitignore +22 -0
- package/templates/library/.npmrc +13 -0
- package/templates/library/pnpm-workspace.yaml +4 -0
- package/templates/minimal/.gitignore +22 -0
- package/templates/minimal/.npmrc +13 -0
- package/templates/minimal/pnpm-workspace.yaml +4 -0
- package/templates/web/.gitignore +22 -0
- package/templates/web/.npmrc +13 -0
- package/templates/web/pnpm-workspace.yaml +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kitschpatrol/create-project",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Kitschpatrol's TypeScript project templates.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -23,7 +23,9 @@
|
|
|
23
23
|
"bin": "dist/index.js",
|
|
24
24
|
"files": [
|
|
25
25
|
"dist",
|
|
26
|
-
"templates"
|
|
26
|
+
"templates",
|
|
27
|
+
"templates/**/.gitignore",
|
|
28
|
+
"templates/**/.npmrc"
|
|
27
29
|
],
|
|
28
30
|
"dependencies": {
|
|
29
31
|
"bingo": "^0.5.16",
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# Git Ignore
|
|
2
|
+
# Also used by CSpell, Stylelint, and ESLint
|
|
3
|
+
|
|
4
|
+
# @kitschpatrol/repo-config boilerplate
|
|
5
|
+
.astro/
|
|
6
|
+
.DS_Store
|
|
7
|
+
.env
|
|
8
|
+
.env.*
|
|
9
|
+
!.env.example
|
|
10
|
+
.eslint-config-inspector
|
|
11
|
+
.svelte-kit/
|
|
12
|
+
{tmp,temp}/
|
|
13
|
+
**/*.min.js
|
|
14
|
+
/scratch/
|
|
15
|
+
bower_components/
|
|
16
|
+
build/
|
|
17
|
+
coverage/
|
|
18
|
+
dist/
|
|
19
|
+
node_modules/
|
|
20
|
+
vendor/
|
|
21
|
+
|
|
22
|
+
# Customizations
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
publish-branch=main
|
|
2
|
+
|
|
3
|
+
# Required for using @kitschpatrol/shared-config and the ksc command with pnpm
|
|
4
|
+
public-hoist-pattern[]=@kitschpatrol/repo-config
|
|
5
|
+
public-hoist-pattern[]=@kitschpatrol/typescript-config
|
|
6
|
+
public-hoist-pattern[]=case-police
|
|
7
|
+
public-hoist-pattern[]=*cspell*
|
|
8
|
+
public-hoist-pattern[]=*eslint*
|
|
9
|
+
public-hoist-pattern[]=*knip*
|
|
10
|
+
public-hoist-pattern[]=*mdat*
|
|
11
|
+
public-hoist-pattern[]=*prettier*
|
|
12
|
+
public-hoist-pattern[]=*remark*
|
|
13
|
+
public-hoist-pattern[]=*stylelint*
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# Git Ignore
|
|
2
|
+
# Also used by CSpell, Stylelint, and ESLint
|
|
3
|
+
|
|
4
|
+
# @kitschpatrol/repo-config boilerplate
|
|
5
|
+
.astro/
|
|
6
|
+
.DS_Store
|
|
7
|
+
.env
|
|
8
|
+
.env.*
|
|
9
|
+
!.env.example
|
|
10
|
+
.eslint-config-inspector
|
|
11
|
+
.svelte-kit/
|
|
12
|
+
{tmp,temp}/
|
|
13
|
+
**/*.min.js
|
|
14
|
+
/scratch/
|
|
15
|
+
bower_components/
|
|
16
|
+
build/
|
|
17
|
+
coverage/
|
|
18
|
+
dist/
|
|
19
|
+
node_modules/
|
|
20
|
+
vendor/
|
|
21
|
+
|
|
22
|
+
# Customizations
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
publish-branch=main
|
|
2
|
+
|
|
3
|
+
# Required for using @kitschpatrol/shared-config and the ksc command with pnpm
|
|
4
|
+
public-hoist-pattern[]=@kitschpatrol/repo-config
|
|
5
|
+
public-hoist-pattern[]=@kitschpatrol/typescript-config
|
|
6
|
+
public-hoist-pattern[]=case-police
|
|
7
|
+
public-hoist-pattern[]=*cspell*
|
|
8
|
+
public-hoist-pattern[]=*eslint*
|
|
9
|
+
public-hoist-pattern[]=*knip*
|
|
10
|
+
public-hoist-pattern[]=*mdat*
|
|
11
|
+
public-hoist-pattern[]=*prettier*
|
|
12
|
+
public-hoist-pattern[]=*remark*
|
|
13
|
+
public-hoist-pattern[]=*stylelint*
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# Git Ignore
|
|
2
|
+
# Also used by CSpell, Stylelint, and ESLint
|
|
3
|
+
|
|
4
|
+
# @kitschpatrol/repo-config boilerplate
|
|
5
|
+
.astro/
|
|
6
|
+
.DS_Store
|
|
7
|
+
.env
|
|
8
|
+
.env.*
|
|
9
|
+
!.env.example
|
|
10
|
+
.eslint-config-inspector
|
|
11
|
+
.svelte-kit/
|
|
12
|
+
{tmp,temp}/
|
|
13
|
+
**/*.min.js
|
|
14
|
+
/scratch/
|
|
15
|
+
bower_components/
|
|
16
|
+
build/
|
|
17
|
+
coverage/
|
|
18
|
+
dist/
|
|
19
|
+
node_modules/
|
|
20
|
+
vendor/
|
|
21
|
+
|
|
22
|
+
# Customizations
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
publish-branch=main
|
|
2
|
+
|
|
3
|
+
# Required for using @kitschpatrol/shared-config and the ksc command with pnpm
|
|
4
|
+
public-hoist-pattern[]=@kitschpatrol/repo-config
|
|
5
|
+
public-hoist-pattern[]=@kitschpatrol/typescript-config
|
|
6
|
+
public-hoist-pattern[]=case-police
|
|
7
|
+
public-hoist-pattern[]=*cspell*
|
|
8
|
+
public-hoist-pattern[]=*eslint*
|
|
9
|
+
public-hoist-pattern[]=*knip*
|
|
10
|
+
public-hoist-pattern[]=*mdat*
|
|
11
|
+
public-hoist-pattern[]=*prettier*
|
|
12
|
+
public-hoist-pattern[]=*remark*
|
|
13
|
+
public-hoist-pattern[]=*stylelint*
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# Git Ignore
|
|
2
|
+
# Also used by CSpell, Stylelint, and ESLint
|
|
3
|
+
|
|
4
|
+
# @kitschpatrol/repo-config boilerplate
|
|
5
|
+
.astro/
|
|
6
|
+
.DS_Store
|
|
7
|
+
.env
|
|
8
|
+
.env.*
|
|
9
|
+
!.env.example
|
|
10
|
+
.eslint-config-inspector
|
|
11
|
+
.svelte-kit/
|
|
12
|
+
{tmp,temp}/
|
|
13
|
+
**/*.min.js
|
|
14
|
+
/scratch/
|
|
15
|
+
bower_components/
|
|
16
|
+
build/
|
|
17
|
+
coverage/
|
|
18
|
+
dist/
|
|
19
|
+
node_modules/
|
|
20
|
+
vendor/
|
|
21
|
+
|
|
22
|
+
# Customizations
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
publish-branch=main
|
|
2
|
+
|
|
3
|
+
# Required for using @kitschpatrol/shared-config and the ksc command with pnpm
|
|
4
|
+
public-hoist-pattern[]=@kitschpatrol/repo-config
|
|
5
|
+
public-hoist-pattern[]=@kitschpatrol/typescript-config
|
|
6
|
+
public-hoist-pattern[]=case-police
|
|
7
|
+
public-hoist-pattern[]=*cspell*
|
|
8
|
+
public-hoist-pattern[]=*eslint*
|
|
9
|
+
public-hoist-pattern[]=*knip*
|
|
10
|
+
public-hoist-pattern[]=*mdat*
|
|
11
|
+
public-hoist-pattern[]=*prettier*
|
|
12
|
+
public-hoist-pattern[]=*remark*
|
|
13
|
+
public-hoist-pattern[]=*stylelint*
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# Git Ignore
|
|
2
|
+
# Also used by CSpell, Stylelint, and ESLint
|
|
3
|
+
|
|
4
|
+
# @kitschpatrol/repo-config boilerplate
|
|
5
|
+
.astro/
|
|
6
|
+
.DS_Store
|
|
7
|
+
.env
|
|
8
|
+
.env.*
|
|
9
|
+
!.env.example
|
|
10
|
+
.eslint-config-inspector
|
|
11
|
+
.svelte-kit/
|
|
12
|
+
{tmp,temp}/
|
|
13
|
+
**/*.min.js
|
|
14
|
+
/scratch/
|
|
15
|
+
bower_components/
|
|
16
|
+
build/
|
|
17
|
+
coverage/
|
|
18
|
+
dist/
|
|
19
|
+
node_modules/
|
|
20
|
+
vendor/
|
|
21
|
+
|
|
22
|
+
# Customizations
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
publish-branch=main
|
|
2
|
+
|
|
3
|
+
# Required for using @kitschpatrol/shared-config and the ksc command with pnpm
|
|
4
|
+
public-hoist-pattern[]=@kitschpatrol/repo-config
|
|
5
|
+
public-hoist-pattern[]=@kitschpatrol/typescript-config
|
|
6
|
+
public-hoist-pattern[]=case-police
|
|
7
|
+
public-hoist-pattern[]=*cspell*
|
|
8
|
+
public-hoist-pattern[]=*eslint*
|
|
9
|
+
public-hoist-pattern[]=*knip*
|
|
10
|
+
public-hoist-pattern[]=*mdat*
|
|
11
|
+
public-hoist-pattern[]=*prettier*
|
|
12
|
+
public-hoist-pattern[]=*remark*
|
|
13
|
+
public-hoist-pattern[]=*stylelint*
|