@temir.ra/create-template 0.1.5-pre.1 → 0.1.6

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,6 +1,10 @@
1
1
  # Version 0
2
2
 
3
- ## next - 0.1.5
3
+ ## 0.1.6
4
+
5
+ 1. Removed `bun run --watch scripts/dev.ts` from DevOps commands in `README.md` and `template/README.md`.
6
+
7
+ ## 0.1.5
4
8
 
5
9
  1. Updated metadata in `package.json` and `template/package.json`.
6
10
  2. Added `bun run --watch scripts/dev.ts` to DevOps commands in `README.md` and `template/README.md`.
package/README.md CHANGED
@@ -51,8 +51,6 @@ bun run clean
51
51
  bun run build
52
52
  bun run tests
53
53
 
54
- bun run --watch scripts/dev.ts
55
-
56
54
  # see publish section for publish instructions
57
55
  ```
58
56
 
package/buildinfo.txt CHANGED
@@ -1 +1 @@
1
- 0.1.5-pre.1+373457b
1
+ 0.1.6+451d2d7
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@temir.ra/create-template",
3
- "version": "0.1.5-pre.1",
3
+ "version": "0.1.6",
4
4
  "description": "A template for a template package.",
5
5
  "author": "temir.ra",
6
6
  "license": "MIT",
@@ -53,8 +53,6 @@ bun run clean
53
53
  bun run build
54
54
  bun run tests
55
55
 
56
- bun run --watch scripts/dev.ts
57
-
58
56
  # see publish section for publish instructions
59
57
  ```
60
58
 
@@ -1,47 +1,47 @@
1
- {
2
- "name": "",
3
- "version": "0.0.0",
4
- "description": "A template package for ...",
5
- "author": "",
6
- "license": "",
7
- "keywords": [
8
- "typescript",
9
- "bun",
10
- "template"
11
- ],
12
- "repository": {
13
- "type": "git",
14
- "url": ""
15
- },
16
- "private": false,
17
- "type": "module",
18
- "imports": {
19
- "#src/*.js": "./src/*.ts"
20
- },
21
- "bin": "./dist/cli.bundle.js",
22
- "files": [
23
- "scripts/buildinfo.ts",
24
- "scripts/build-bundle.ts",
25
- "scripts/cdn-rewrite-map.json",
26
- "CHANGELOG.md",
27
- "buildinfo.txt",
28
- "dist/",
29
- "template/"
30
- ],
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",
35
- "clean:dist": "rm -rf dist/",
36
- "clean:tsbuildinfo": "rm -f *.tsbuildinfo || true",
37
- "clean": "bun run clean:dist && bun run clean:tsbuildinfo",
38
- "tests": "bun test",
39
- "prebuild": "bun run buildinfo",
40
- "build": "bun run build:cli-bundle",
41
- "build:cli-bundle": "bun build src/cli.ts --entry-naming \"[dir]/[name].bundle.[ext]\" --outdir dist --target node --format esm --minify --sourcemap=external"
42
- },
43
- "devDependencies": {
44
- "@types/bun": "latest",
45
- "typescript": "^6.0.2"
46
- }
1
+ {
2
+ "name": "",
3
+ "version": "0.0.0",
4
+ "description": "A template for ...",
5
+ "author": "",
6
+ "license": "",
7
+ "keywords": [
8
+ "typescript",
9
+ "bun",
10
+ "template"
11
+ ],
12
+ "repository": {
13
+ "type": "git",
14
+ "url": ""
15
+ },
16
+ "private": false,
17
+ "type": "module",
18
+ "imports": {
19
+ "#src/*.js": "./src/*.ts"
20
+ },
21
+ "bin": "./dist/cli.bundle.js",
22
+ "files": [
23
+ "scripts/buildinfo.ts",
24
+ "scripts/build-bundle.ts",
25
+ "scripts/cdn-rewrite-map.json",
26
+ "CHANGELOG.md",
27
+ "buildinfo.txt",
28
+ "dist/",
29
+ "template/"
30
+ ],
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",
35
+ "clean:dist": "rm -rf dist/",
36
+ "clean:tsbuildinfo": "rm -f *.tsbuildinfo || true",
37
+ "clean": "bun run clean:dist && bun run clean:tsbuildinfo",
38
+ "tests": "bun test",
39
+ "prebuild": "bun run buildinfo",
40
+ "build": "bun run build:cli-bundle",
41
+ "build:cli-bundle": "bun build src/cli.ts --entry-naming \"[dir]/[name].bundle.[ext]\" --outdir dist --target node --format esm --minify --sourcemap=external"
42
+ },
43
+ "devDependencies": {
44
+ "@types/bun": "latest",
45
+ "typescript": "^6.0.2"
46
+ }
47
47
  }