@temir.ra/create-workspace 0.4.4 → 0.4.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 +9 -0
- package/README.md +3 -2
- package/buildinfo.txt +1 -1
- package/package.json +2 -2
- package/template/package.json +1 -1
- package/template/tsconfig.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Version 0
|
|
2
2
|
|
|
3
|
+
## 0.4.6
|
|
4
|
+
|
|
5
|
+
1. Minor updates to ensure consistency across templates.
|
|
6
|
+
2. Updated files from `template` template and template files from `ts-lib` template.
|
|
7
|
+
|
|
8
|
+
## 0.4.5
|
|
9
|
+
|
|
10
|
+
1. Updated `typescript` to `6.0.3`.
|
|
11
|
+
|
|
3
12
|
## 0.4.4
|
|
4
13
|
|
|
5
14
|
1. Updated files from `@temir.ra/template@0.1.6` template.
|
package/README.md
CHANGED
|
@@ -105,7 +105,7 @@ See npmjs documentation on [package.json](https://docs.npmjs.com/cli/v11/configu
|
|
|
105
105
|
|
|
106
106
|
"devDependencies": {
|
|
107
107
|
"@types/bun": "latest",
|
|
108
|
-
"typescript": "^6.0.
|
|
108
|
+
"typescript": "^6.0.3"
|
|
109
109
|
}
|
|
110
110
|
|
|
111
111
|
}
|
|
@@ -184,7 +184,7 @@ See the TypeScript documentation on [tsconfig.json](https://www.typescriptlang.o
|
|
|
184
184
|
],
|
|
185
185
|
// files matched by exclude are hidden from the IDE and excluded from type-checking
|
|
186
186
|
"exclude": [
|
|
187
|
-
"node_modules"
|
|
187
|
+
"node_modules/"
|
|
188
188
|
]
|
|
189
189
|
|
|
190
190
|
}
|
|
@@ -420,6 +420,7 @@ Starting point for any LLM skill package. See the full documentation at [`@temir
|
|
|
420
420
|
# DevOps
|
|
421
421
|
|
|
422
422
|
```bash
|
|
423
|
+
bun update
|
|
423
424
|
bun install
|
|
424
425
|
|
|
425
426
|
bun run clean
|
package/buildinfo.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.4.
|
|
1
|
+
0.4.6+9bbfe31
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@temir.ra/create-workspace",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.6",
|
|
4
4
|
"description": "A template for a generic TypeScript workspace.",
|
|
5
5
|
"author": "temir.ra",
|
|
6
6
|
"license": "MIT",
|
|
@@ -43,6 +43,6 @@
|
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@types/bun": "latest",
|
|
46
|
-
"typescript": "^6.0.
|
|
46
|
+
"typescript": "^6.0.3"
|
|
47
47
|
}
|
|
48
48
|
}
|
package/template/package.json
CHANGED