@temir.ra/create-ts-lib 0.7.0 → 0.7.2
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/CHANGELOG.md +8 -0
- package/buildinfo.txt +1 -1
- package/package.json +1 -1
- package/template/gitignore +1 -1
- package/template/package.json +5 -5
- package/template/tsconfig.json +37 -37
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Version 0
|
|
2
2
|
|
|
3
|
+
## 0.7.2
|
|
4
|
+
|
|
5
|
+
1. Cleaned up `*-template.*` files from the template directory.
|
|
6
|
+
|
|
7
|
+
## 0.7.1
|
|
8
|
+
|
|
9
|
+
1. Updated `template/` files from `@temir.ra/workspace@0.4.1` template.
|
|
10
|
+
|
|
3
11
|
## 0.7.0
|
|
4
12
|
|
|
5
13
|
1. Updated `.gitignore`: added `bun.lock`, `buildinfo-template.txt`, `CHANGELOG-template.md`, `README-template.md`; replaced nested `template/.gitignore` with `template/gitignore` to prevent template files from being excluded during distribution.
|
package/buildinfo.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.7.
|
|
1
|
+
0.7.2+395717b
|
package/package.json
CHANGED
package/template/gitignore
CHANGED
package/template/package.json
CHANGED
|
@@ -28,18 +28,18 @@
|
|
|
28
28
|
"scripts/buildinfo.ts",
|
|
29
29
|
"scripts/build-bundle.ts",
|
|
30
30
|
"scripts/cdn-rewrite-map.json",
|
|
31
|
-
"dist",
|
|
32
31
|
"CHANGELOG.md",
|
|
33
|
-
"buildinfo.txt"
|
|
32
|
+
"buildinfo.txt",
|
|
33
|
+
"dist"
|
|
34
34
|
],
|
|
35
35
|
"scripts": {
|
|
36
|
+
"reinstall": "rm -rf node_modules && rm -f bun.lock && bun pm cache rm && bun install && bunx tsc --version",
|
|
37
|
+
"typecheck": "tsc --noEmit",
|
|
38
|
+
"buildinfo": "bun run scripts/buildinfo.ts",
|
|
36
39
|
"clean:dist": "rm -rf dist/",
|
|
37
40
|
"clean:tsbuildinfo": "rm -f *.tsbuildinfo || true",
|
|
38
41
|
"clean": "bun run clean:dist && bun run clean:tsbuildinfo",
|
|
39
|
-
"buildinfo": "bun run scripts/buildinfo.ts",
|
|
40
42
|
"tests": "bun test",
|
|
41
|
-
"typecheck": "tsc --noEmit",
|
|
42
|
-
"reinstall": "rm -rf node_modules && rm -f bun.lock && bun pm cache rm && bun install && bunx tsc --version",
|
|
43
43
|
"prebuild": "bun run buildinfo",
|
|
44
44
|
"build": "bun run build:bundle",
|
|
45
45
|
"build:bundle": "bun run scripts/build-bundle.ts"
|
package/template/tsconfig.json
CHANGED
|
@@ -1,38 +1,38 @@
|
|
|
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
|
-
"bun"
|
|
20
|
-
],
|
|
21
|
-
"forceConsistentCasingInFileNames": true,
|
|
22
|
-
"resolveJsonModule": true,
|
|
23
|
-
"declaration": true,
|
|
24
|
-
"declarationMap": true,
|
|
25
|
-
"emitDeclarationOnly": true,
|
|
26
|
-
"outDir": "./dist"
|
|
27
|
-
},
|
|
28
|
-
"include": [
|
|
29
|
-
"
|
|
30
|
-
"scripts/**/*.
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
],
|
|
34
|
-
"exclude": [
|
|
35
|
-
"node_modules",
|
|
36
|
-
"dist"
|
|
37
|
-
]
|
|
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
|
+
"bun"
|
|
20
|
+
],
|
|
21
|
+
"forceConsistentCasingInFileNames": true,
|
|
22
|
+
"resolveJsonModule": true,
|
|
23
|
+
"declaration": true,
|
|
24
|
+
"declarationMap": true,
|
|
25
|
+
"emitDeclarationOnly": true,
|
|
26
|
+
"outDir": "./dist"
|
|
27
|
+
},
|
|
28
|
+
"include": [
|
|
29
|
+
"scripts/**/*.ts",
|
|
30
|
+
"scripts/**/*.json",
|
|
31
|
+
"src/**/*.ts",
|
|
32
|
+
"tests/**/*.ts"
|
|
33
|
+
],
|
|
34
|
+
"exclude": [
|
|
35
|
+
"node_modules",
|
|
36
|
+
"dist"
|
|
37
|
+
]
|
|
38
38
|
}
|