@temir.ra/create-ts-lib 0.6.1 → 0.6.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/CHANGELOG.md +9 -0
- package/README.md +1 -3
- package/buildinfo.txt +1 -1
- package/package.json +3 -4
- package/template/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Version 0
|
|
2
2
|
|
|
3
|
+
## 0.6.3
|
|
4
|
+
|
|
5
|
+
1. Cleaned up dormant package scripts.
|
|
6
|
+
2. Cleaned up minor `README.md` inconsistencies.
|
|
7
|
+
|
|
8
|
+
## 0.6.2
|
|
9
|
+
|
|
10
|
+
1. Updated `clean:tsbuildinfo` script to remove both `tsconfig.tsbuildinfo` and `tsconfig.build.tsbuildinfo`.
|
|
11
|
+
|
|
3
12
|
## 0.6.1
|
|
4
13
|
|
|
5
14
|
1. Cleaned up dormant imports.
|
package/README.md
CHANGED
|
@@ -24,8 +24,6 @@ A template for TypeScript libraries distributed via npm-compatible registries. P
|
|
|
24
24
|
3. [DevOps](#devops)
|
|
25
25
|
1. [Change Management](#change-management)
|
|
26
26
|
2. [Publish](#publish)
|
|
27
|
-
1. [npmjs.org](#npmjsorg)
|
|
28
|
-
2. [Custom registry](#custom-registry)
|
|
29
27
|
|
|
30
28
|
# Quick Start
|
|
31
29
|
|
|
@@ -55,7 +53,7 @@ bun install
|
|
|
55
53
|
|
|
56
54
|
# Documentation
|
|
57
55
|
|
|
58
|
-
The following sections explain the configurations and conventions baked into the generated package. Useful when adapting
|
|
56
|
+
The following sections explain the configurations and conventions baked into the generated package. Useful when adapting it to fit specific needs.
|
|
59
57
|
|
|
60
58
|
## `tsconfig.json` and `tsconfig.build.json`
|
|
61
59
|
|
package/buildinfo.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.6.
|
|
1
|
+
0.6.3+0b0d257
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@temir.ra/create-ts-lib",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.3",
|
|
4
4
|
"description": "Typescript library template",
|
|
5
5
|
"author": "temir.ra",
|
|
6
6
|
"license": "MIT",
|
|
@@ -27,15 +27,14 @@
|
|
|
27
27
|
],
|
|
28
28
|
"scripts": {
|
|
29
29
|
"clean:dist": "rm -rf dist/",
|
|
30
|
-
"clean:tsbuildinfo": "rm -f tsconfig.build.tsbuildinfo",
|
|
30
|
+
"clean:tsbuildinfo": "rm -f tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo",
|
|
31
31
|
"clean": "bun run clean:dist && bun run clean:tsbuildinfo",
|
|
32
32
|
"prebuild": "bun run scripts/buildinfo.ts",
|
|
33
33
|
"tests": "bun test",
|
|
34
34
|
"build": "bun run build:lib && bun run build:cli-bundle",
|
|
35
35
|
"build:lib": "tsc --project tsconfig.build.json",
|
|
36
36
|
"build:cli-bundle": "bun build src/cli.ts --entry-naming \"[dir]/[name].bundle.[ext]\" --outdir dist --target node --format esm --minify --sourcemap=external",
|
|
37
|
-
"typecheck": "tsc --noEmit"
|
|
38
|
-
"dev": "bun run --watch src/dev.ts"
|
|
37
|
+
"typecheck": "tsc --noEmit"
|
|
39
38
|
},
|
|
40
39
|
"devDependencies": {
|
|
41
40
|
"@types/bun": "latest",
|
package/template/package.json
CHANGED
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
],
|
|
31
31
|
"scripts": {
|
|
32
32
|
"clean:dist": "rm -rf dist/",
|
|
33
|
-
"clean:tsbuildinfo": "rm -f tsconfig.build.tsbuildinfo",
|
|
33
|
+
"clean:tsbuildinfo": "rm -f tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo",
|
|
34
34
|
"clean": "bun run clean:dist && bun run clean:tsbuildinfo",
|
|
35
35
|
"prebuild": "bun run scripts/buildinfo.ts",
|
|
36
36
|
"tests": "bun test",
|