@temir.ra/create-template 0.1.4 → 0.1.5-pre.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/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Version 0
2
2
 
3
+ ## next - 0.1.5
4
+
5
+ 1. Updated metadata in `package.json` and `template/package.json`.
6
+ 2. Added `bun run --watch scripts/dev.ts` to DevOps commands in `README.md` and `template/README.md`.
7
+
3
8
  ## 0.1.4
4
9
 
5
10
  1. Updated `template/` files from `@temir.ra/ts-lib@0.7.2` template.
package/README.md CHANGED
@@ -51,7 +51,7 @@ bun run clean
51
51
  bun run build
52
52
  bun run tests
53
53
 
54
- bun run dev
54
+ bun run --watch scripts/dev.ts
55
55
 
56
56
  # see publish section for publish instructions
57
57
  ```
package/buildinfo.txt CHANGED
@@ -1 +1 @@
1
- 0.1.4+1bb9f0d
1
+ 0.1.5-pre.1+373457b
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@temir.ra/create-template",
3
- "version": "0.1.4",
4
- "description": "Template for a template package.",
3
+ "version": "0.1.5-pre.1",
4
+ "description": "A template for a template package.",
5
5
  "author": "temir.ra",
6
6
  "license": "MIT",
7
7
  "keywords": [
8
8
  "typescript",
9
- "template",
10
- "bun"
9
+ "bun",
10
+ "template"
11
11
  ],
12
12
  "repository": {
13
13
  "type": "git",
@@ -23,19 +23,19 @@
23
23
  "scripts/buildinfo.ts",
24
24
  "scripts/build-bundle.ts",
25
25
  "scripts/cdn-rewrite-map.json",
26
- "dist",
27
26
  "CHANGELOG.md",
28
27
  "buildinfo.txt",
29
- "template"
28
+ "dist/",
29
+ "template/"
30
30
  ],
31
31
  "scripts": {
32
+ "reinstall": "rm -rf node_modules && rm -f bun.lock && bun pm cache rm && bun install && bunx tsc --version",
33
+ "typecheck": "tsc --noEmit",
34
+ "buildinfo": "bun run scripts/buildinfo.ts",
32
35
  "clean:dist": "rm -rf dist/",
33
36
  "clean:tsbuildinfo": "rm -f *.tsbuildinfo || true",
34
37
  "clean": "bun run clean:dist && bun run clean:tsbuildinfo",
35
- "buildinfo": "bun run scripts/buildinfo.ts",
36
38
  "tests": "bun test",
37
- "typecheck": "tsc --noEmit",
38
- "reinstall": "rm -rf node_modules && rm -f bun.lock && bun pm cache rm && bun install && bunx tsc --version",
39
39
  "prebuild": "bun run buildinfo",
40
40
  "build": "bun run build:cli-bundle",
41
41
  "build:cli-bundle": "bun build src/cli.ts --entry-naming \"[dir]/[name].bundle.[ext]\" --outdir dist --target node --format esm --minify --sourcemap=external"
@@ -53,7 +53,7 @@ bun run clean
53
53
  bun run build
54
54
  bun run tests
55
55
 
56
- bun run dev
56
+ bun run --watch scripts/dev.ts
57
57
 
58
58
  # see publish section for publish instructions
59
59
  ```
@@ -4,6 +4,6 @@ buildinfo-template.txt
4
4
  CHANGELOG-template.md
5
5
  README-template.md
6
6
  *.tsbuildinfo
7
- dist
7
+ dist/
8
8
  example/
9
9
  bun.lock
@@ -1,11 +1,13 @@
1
1
  {
2
2
  "name": "",
3
3
  "version": "0.0.0",
4
- "description": "",
4
+ "description": "A template package for ...",
5
5
  "author": "",
6
6
  "license": "",
7
7
  "keywords": [
8
- "typescript"
8
+ "typescript",
9
+ "bun",
10
+ "template"
9
11
  ],
10
12
  "repository": {
11
13
  "type": "git",
@@ -23,8 +25,8 @@
23
25
  "scripts/cdn-rewrite-map.json",
24
26
  "CHANGELOG.md",
25
27
  "buildinfo.txt",
26
- "dist",
27
- "template"
28
+ "dist/",
29
+ "template/"
28
30
  ],
29
31
  "scripts": {
30
32
  "reinstall": "rm -rf node_modules && rm -f bun.lock && bun pm cache rm && bun install && bunx tsc --version",