typespec-typescript-emitter 0.3.4 → 0.3.5

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.
@@ -14,6 +14,7 @@ jobs:
14
14
  uses: TriPSs/conventional-changelog-action@v5.4.0
15
15
  with:
16
16
  github-token: ${{ secrets.GH_TOKEN }}
17
+ skip-on-empty: false
17
18
  - name: Create Release
18
19
  uses: actions/create-release@v1
19
20
  if: ${{ steps.changelog.outputs.skipped == 'false' }}
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## [0.3.5](https://github.com/crowbait/typespec-typescript-emitter/compare/v0.3.4...v0.3.5) (2025-02-23)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * ci (no skip on chore-only) ([75b2e5d](https://github.com/crowbait/typespec-typescript-emitter/commit/75b2e5d4346fd17de5c7baf689de6e4cac259542))
7
+
8
+
9
+
1
10
  ## [0.3.4](https://github.com/crowbait/typespec-typescript-emitter/compare/v0.3.3...v0.3.4) (2025-01-03)
2
11
 
3
12
 
@@ -36,21 +45,3 @@
36
45
 
37
46
 
38
47
 
39
- # [0.3.0](https://github.com/crowbait/typespec-typescript-emitter/compare/v0.2.0...v0.3.0) (2024-12-08)
40
-
41
-
42
- ### Bug Fixes
43
-
44
- * content-type+body response models in typeguards ([61f37e3](https://github.com/crowbait/typespec-typescript-emitter/commit/61f37e31a330585f4b97ffd7aa2e4a6aa73cc689))
45
- * remove useless routes interface ([b828ee9](https://github.com/crowbait/typespec-typescript-emitter/commit/b828ee994743c7fbbb313adb042088057f59466f))
46
- * typo in typeguards (double space) ([253aacf](https://github.com/crowbait/typespec-typescript-emitter/commit/253aacff2859e58c659a1357a0d7e16088520f6f))
47
-
48
-
49
- ### Features
50
-
51
- * support for unions and nested models in typeguards ([9292107](https://github.com/crowbait/typespec-typescript-emitter/commit/92921073ad83a1cec74d7b7595cb178120cdc32b))
52
- * typeguards ([8dc3eef](https://github.com/crowbait/typespec-typescript-emitter/commit/8dc3eef62c4d9bc0df71d7878ada52254ed1475a))
53
- * typeguards in routes ([010388a](https://github.com/crowbait/typespec-typescript-emitter/commit/010388a2ff1c0c53ce34828e4197e31ada745e83))
54
-
55
-
56
-
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "typespec-typescript-emitter",
3
- "version": "0.3.4",
3
+ "version": "0.3.5",
4
4
  "description": "A TypeSpec library providing an emitter that generates TypeScript types and a structured routes object for robust importing",
5
5
  "homepage": "https://github.com/crowbait/typespec-typescript-emitter#readme",
6
6
  "bugs": "https://github.com/crowbait/typespec-typescript-emitter/issues",
@@ -31,8 +31,8 @@
31
31
  "typescript-eslint": "^8.15.0"
32
32
  },
33
33
  "peerDependencies": {
34
- "@typespec/compiler": "^0.62.0",
35
- "@typespec/http": "^0.62.0"
34
+ "@typespec/compiler": "0.x",
35
+ "@typespec/http": "0.x"
36
36
  },
37
37
  "scripts": {
38
38
  "build": "rimraf dist && tsc",