@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 +8 -0
- package/README.md +1 -1
- package/buildinfo.txt +1 -1
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
package/buildinfo.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.4.
|
|
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.
|
|
4
|
-
"description": "
|
|
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
|
-
"
|
|
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"
|