@temir.ra/create-template 0.5.4 → 0.6.0
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/LICENSE +20 -20
- package/README.md +144 -79
- package/dist/CHANGELOG.md +116 -106
- package/dist/buildinfo.txt +1 -1
- package/dist/cli.bundle.js +0 -0
- package/dist/cli.bundle.js.map +1 -1
- package/dist/template/CHANGELOG.md +5 -5
- package/dist/template/README.md +163 -94
- package/dist/template/gitignore +8 -8
- package/dist/template/package.json +51 -46
- package/dist/template/scripts/build-bundle.ts +212 -212
- package/dist/template/scripts/buildinfo.ts +25 -25
- package/dist/template/src/cli.ts +41 -41
- package/dist/template/src/package-urls.ts +8 -8
- package/dist/template/tests/buildinfo.test.ts +26 -26
- package/dist/template/tsconfig.json +33 -33
- package/package.json +8 -3
- package/dist/template/buildinfo.txt +0 -1
|
@@ -1,34 +1,34 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"target": "ESNext",
|
|
4
|
-
"module": "ESNext",
|
|
5
|
-
"lib": [
|
|
6
|
-
"ESNext"
|
|
7
|
-
],
|
|
8
|
-
"moduleResolution": "bundler",
|
|
9
|
-
"strict": true,
|
|
10
|
-
"verbatimModuleSyntax": true,
|
|
11
|
-
"noUncheckedIndexedAccess": true,
|
|
12
|
-
"exactOptionalPropertyTypes": true,
|
|
13
|
-
"noImplicitOverride": true,
|
|
14
|
-
"isolatedDeclarations": true,
|
|
15
|
-
"esModuleInterop": true,
|
|
16
|
-
"composite": true,
|
|
17
|
-
"skipLibCheck": true,
|
|
18
|
-
"types": [
|
|
19
|
-
"node"
|
|
20
|
-
],
|
|
21
|
-
"forceConsistentCasingInFileNames": true,
|
|
22
|
-
"resolveJsonModule": true
|
|
23
|
-
},
|
|
24
|
-
"include": [
|
|
25
|
-
"scripts/**/*.ts",
|
|
26
|
-
"scripts/**/*.json",
|
|
27
|
-
"src/**/*.ts",
|
|
28
|
-
"tests/**/*.ts"
|
|
29
|
-
],
|
|
30
|
-
"exclude": [
|
|
31
|
-
"node_modules/",
|
|
32
|
-
"dist/"
|
|
33
|
-
]
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"target": "ESNext",
|
|
4
|
+
"module": "ESNext",
|
|
5
|
+
"lib": [
|
|
6
|
+
"ESNext"
|
|
7
|
+
],
|
|
8
|
+
"moduleResolution": "bundler",
|
|
9
|
+
"strict": true,
|
|
10
|
+
"verbatimModuleSyntax": true,
|
|
11
|
+
"noUncheckedIndexedAccess": true,
|
|
12
|
+
"exactOptionalPropertyTypes": true,
|
|
13
|
+
"noImplicitOverride": true,
|
|
14
|
+
"isolatedDeclarations": true,
|
|
15
|
+
"esModuleInterop": true,
|
|
16
|
+
"composite": true,
|
|
17
|
+
"skipLibCheck": true,
|
|
18
|
+
"types": [
|
|
19
|
+
"node"
|
|
20
|
+
],
|
|
21
|
+
"forceConsistentCasingInFileNames": true,
|
|
22
|
+
"resolveJsonModule": true
|
|
23
|
+
},
|
|
24
|
+
"include": [
|
|
25
|
+
"scripts/**/*.ts",
|
|
26
|
+
"scripts/**/*.json",
|
|
27
|
+
"src/**/*.ts",
|
|
28
|
+
"tests/**/*.ts"
|
|
29
|
+
],
|
|
30
|
+
"exclude": [
|
|
31
|
+
"node_modules/",
|
|
32
|
+
"dist/"
|
|
33
|
+
]
|
|
34
34
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@temir.ra/create-template",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"description": "A template for a template package.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"keywords": [
|
|
@@ -17,7 +17,9 @@
|
|
|
17
17
|
"files": [
|
|
18
18
|
"dist/"
|
|
19
19
|
],
|
|
20
|
-
"bin":
|
|
20
|
+
"bin": {
|
|
21
|
+
"create-template": "dist/cli.bundle.js"
|
|
22
|
+
},
|
|
21
23
|
"exports": {
|
|
22
24
|
".": {
|
|
23
25
|
"entrypoint": "./src/cli.ts"
|
|
@@ -33,7 +35,7 @@
|
|
|
33
35
|
"clean:dist": "rm -rf dist/",
|
|
34
36
|
"clean:tsbuildinfo": "rm -f tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo",
|
|
35
37
|
"clean": "npm run clean:dist && npm run clean:tsbuildinfo",
|
|
36
|
-
"tests": "node --import tsx --test tests/**/*.test.ts",
|
|
38
|
+
"tests": "node --import tsx --test \"tests/**/*.test.ts\"",
|
|
37
39
|
"prebuild": "npm run buildinfo",
|
|
38
40
|
"build": "npm run build:bundle",
|
|
39
41
|
"build:bundle": "tsx scripts/build-bundle.ts -- --omit-iife"
|
|
@@ -43,5 +45,8 @@
|
|
|
43
45
|
"esbuild": "latest",
|
|
44
46
|
"tsx": "latest",
|
|
45
47
|
"typescript": "^6.0.3"
|
|
48
|
+
},
|
|
49
|
+
"allowScripts": {
|
|
50
|
+
"esbuild": true
|
|
46
51
|
}
|
|
47
52
|
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
0.0.0
|