@lssm/tool.typescript 0.10.0 → 0.12.0

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,23 @@
1
1
  # @lssm/tool.typescript
2
2
 
3
+ ## 0.12.0
4
+
5
+ ### Minor Changes
6
+
7
+ - Refactor to be compatible with ai-sdk v6
8
+
9
+ ## 0.11.1
10
+
11
+ ### Patch Changes
12
+
13
+ - Fix dependencies
14
+
15
+ ## 0.11.0
16
+
17
+ ### Minor Changes
18
+
19
+ - b7621d3: Fix version
20
+
3
21
  ## 0.10.0
4
22
 
5
23
  ### Minor Changes
package/base.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/tsconfig",
3
3
  "compilerOptions": {
4
- "declaration": true,
5
- "declarationMap": true,
4
+ "declaration": false,
5
+ "declarationMap": false,
6
6
  "composite": false,
7
7
  "esModuleInterop": true,
8
8
  "incremental": true,
package/package.json CHANGED
@@ -1,8 +1,11 @@
1
1
  {
2
2
  "name": "@lssm/tool.typescript",
3
- "version": "0.10.0",
3
+ "version": "0.12.0",
4
4
  "devDependencies": {
5
5
  "typescript": "^5.9.3"
6
6
  },
7
- "type": "module"
7
+ "type": "module",
8
+ "publishConfig": {
9
+ "access": "public"
10
+ }
8
11
  }