@temir.ra/create-workspace 0.4.1 → 0.4.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 CHANGED
@@ -1,5 +1,13 @@
1
1
  # Version 0
2
2
 
3
+ ## 0.4.3
4
+
5
+ 1. Updated from `@temir.ra/template@0.1.5` template.
6
+
7
+ ## 0.4.2
8
+
9
+ 1. Updated from `@temir.ra/template@0.1.4` template.
10
+
3
11
  ## 0.4.1
4
12
 
5
13
  1. Cleaned up coding-specific aspects.
package/README.md CHANGED
@@ -426,7 +426,7 @@ bun run clean
426
426
  bun run build
427
427
  bun run tests
428
428
 
429
- bun run dev
429
+ bun run --watch scripts/dev.ts
430
430
 
431
431
  # see publish section for publish instructions
432
432
  ```
package/buildinfo.txt CHANGED
@@ -1 +1 @@
1
- 0.4.1+f472194
1
+ 0.4.3+ebdd919
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@temir.ra/create-workspace",
3
- "version": "0.4.1",
4
- "description": "Template for a generic TypeScript workspace.",
3
+ "version": "0.4.3",
4
+ "description": "A template for a generic TypeScript workspace.",
5
5
  "author": "temir.ra",
6
6
  "license": "MIT",
7
7
  "keywords": [
8
8
  "typescript",
9
+ "bun",
9
10
  "template",
10
- "workspace",
11
- "bun"
11
+ "workspace"
12
12
  ],
13
13
  "repository": {
14
14
  "type": "git",
@@ -24,19 +24,19 @@
24
24
  "scripts/buildinfo.ts",
25
25
  "scripts/build-bundle.ts",
26
26
  "scripts/cdn-rewrite-map.json",
27
- "dist",
28
27
  "CHANGELOG.md",
29
28
  "buildinfo.txt",
30
- "template"
29
+ "dist/",
30
+ "template/"
31
31
  ],
32
32
  "scripts": {
33
+ "reinstall": "rm -rf node_modules && rm -f bun.lock && bun pm cache rm && bun install && bunx tsc --version",
34
+ "typecheck": "tsc --noEmit",
35
+ "buildinfo": "bun run scripts/buildinfo.ts",
33
36
  "clean:dist": "rm -rf dist/",
34
37
  "clean:tsbuildinfo": "rm -f *.tsbuildinfo || true",
35
38
  "clean": "bun run clean:dist && bun run clean:tsbuildinfo",
36
- "buildinfo": "bun run scripts/buildinfo.ts",
37
39
  "tests": "bun test",
38
- "typecheck": "tsc --noEmit",
39
- "reinstall": "rm -rf node_modules && rm -f bun.lock && bun pm cache rm && bun install && bunx tsc --version",
40
40
  "prebuild": "bun run buildinfo",
41
41
  "build": "bun run build:cli-bundle",
42
42
  "build:cli-bundle": "bun build src/cli.ts --entry-naming \"[dir]/[name].bundle.[ext]\" --outdir dist --target node --format esm --minify --sourcemap=external"