@typespec/emitter-framework 0.3.0-dev.6 → 0.3.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/package.json +8 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog - @typespec/emitter-framework
2
2
 
3
+ ## 0.3.0
4
+
5
+ ### Bump dependencies
6
+
7
+ - [#6266](https://github.com/microsoft/typespec/pull/6266) Update dependencies
8
+
9
+ ### Bug Fixes
10
+
11
+ - [#6178](https://github.com/microsoft/typespec/pull/6178) Improvements on the TestHarness
12
+ - [#6460](https://github.com/microsoft/typespec/pull/6460) Update dependency structure for EmitterFramework, HttpClient and JS Emitter
13
+
14
+
3
15
 
4
16
 
5
17
  ## 0.2.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@typespec/emitter-framework",
3
- "version": "0.3.0-dev.6",
3
+ "version": "0.3.0",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "exports": {
@@ -21,16 +21,13 @@
21
21
  "peerDependencies": {
22
22
  "@alloy-js/core": "^0.6.0",
23
23
  "@alloy-js/typescript": "^0.6.0",
24
- "@typespec/compiler": "^0.66.0 || >=0.67.0-dev <0.67.0",
25
- "@typespec/http": "^0.66.0 || >=0.67.0-dev <0.67.0",
26
- "@typespec/rest": "^0.66.0 || >=0.67.0-dev <0.67.0"
24
+ "@typespec/compiler": "^0.67.0",
25
+ "@typespec/http": "^0.67.0",
26
+ "@typespec/rest": "^0.67.0"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@alloy-js/core": "^0.6.0",
30
30
  "@alloy-js/typescript": "^0.6.0",
31
- "@typespec/compiler": "^0.66.0 || >=0.67.0-dev <0.67.0",
32
- "@typespec/http": "^0.66.0 || >=0.67.0-dev <0.67.0",
33
- "@typespec/rest": "^0.66.0 || >=0.67.0-dev <0.67.0",
34
31
  "@alloy-js/babel-preset": "^0.2.0",
35
32
  "@babel/cli": "^7.24.8",
36
33
  "@babel/core": "^7.26.9",
@@ -46,9 +43,11 @@
46
43
  "tree-sitter-python": "^0.23.2",
47
44
  "tree-sitter-typescript": "^0.23.0",
48
45
  "typescript": "~5.8.2",
49
- "vitest": "^3.0.7"
46
+ "vitest": "^3.0.7",
47
+ "@typespec/compiler": "^0.67.0",
48
+ "@typespec/http": "^0.67.0",
49
+ "@typespec/rest": "^0.67.0"
50
50
  },
51
- "dependencies": {},
52
51
  "scripts": {
53
52
  "build-src": "babel src -d dist/src --extensions .ts,.tsx",
54
53
  "build": "tsc -p . && npm run build-src",