@temir.ra/create-template 0.1.5 → 0.1.7

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,14 @@
1
1
  # Version 0
2
2
 
3
+ ## 0.1.7
4
+
5
+ 1. Updated `typescript` to `6.0.3`.
6
+ 2. Updated template files from `ts-lib` template.
7
+
8
+ ## 0.1.6
9
+
10
+ 1. Removed `bun run --watch scripts/dev.ts` from DevOps commands in `README.md` and `template/README.md`.
11
+
3
12
  ## 0.1.5
4
13
 
5
14
  1. Updated metadata in `package.json` and `template/package.json`.
package/README.md CHANGED
@@ -45,14 +45,13 @@ The following sections explain the configurations and conventions baked into the
45
45
  # DevOps
46
46
 
47
47
  ```bash
48
+ bun update
48
49
  bun install
49
50
 
50
51
  bun run clean
51
52
  bun run build
52
53
  bun run tests
53
54
 
54
- bun run --watch scripts/dev.ts
55
-
56
55
  # see publish section for publish instructions
57
56
  ```
58
57
 
package/buildinfo.txt CHANGED
@@ -1 +1 @@
1
- 0.1.5+9a10cc9
1
+ 0.1.7+2f1ebe5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@temir.ra/create-template",
3
- "version": "0.1.5",
3
+ "version": "0.1.7",
4
4
  "description": "A template for a template package.",
5
5
  "author": "temir.ra",
6
6
  "license": "MIT",
@@ -42,6 +42,6 @@
42
42
  },
43
43
  "devDependencies": {
44
44
  "@types/bun": "latest",
45
- "typescript": "^6.0.2"
45
+ "typescript": "^6.0.3"
46
46
  }
47
47
  }
@@ -47,14 +47,13 @@ The following sections explain the configurations and conventions baked into the
47
47
  # DevOps
48
48
 
49
49
  ```bash
50
+ bun update
50
51
  bun install
51
52
 
52
53
  bun run clean
53
54
  bun run build
54
55
  bun run tests
55
56
 
56
- bun run --watch scripts/dev.ts
57
-
58
57
  # see publish section for publish instructions
59
58
  ```
60
59
 
@@ -6,4 +6,3 @@ README-template.md
6
6
  *.tsbuildinfo
7
7
  dist/
8
8
  example/
9
- bun.lock
@@ -42,6 +42,6 @@
42
42
  },
43
43
  "devDependencies": {
44
44
  "@types/bun": "latest",
45
- "typescript": "^6.0.2"
45
+ "typescript": "^6.0.3"
46
46
  }
47
47
  }
@@ -16,7 +16,7 @@ function readBuildinfo(): string {
16
16
 
17
17
  describe('buildInfo', () => {
18
18
 
19
- it('should be a valid semver string', () => {
19
+ it('MUST be a valid semver string', () => {
20
20
  expect(readBuildinfo()).toMatch(SEMVER_REGEX);
21
21
  });
22
22
 
@@ -19,11 +19,7 @@
19
19
  "bun"
20
20
  ],
21
21
  "forceConsistentCasingInFileNames": true,
22
- "resolveJsonModule": true,
23
- "declaration": true,
24
- "declarationMap": true,
25
- "emitDeclarationOnly": true,
26
- "outDir": "./dist"
22
+ "resolveJsonModule": true
27
23
  },
28
24
  "include": [
29
25
  "scripts/**/*.ts",
@@ -32,7 +28,7 @@
32
28
  "tests/**/*.ts"
33
29
  ],
34
30
  "exclude": [
35
- "node_modules",
36
- "dist"
31
+ "node_modules/",
32
+ "dist/"
37
33
  ]
38
34
  }