@typespec/emitter-framework 0.6.0-dev.7 → 0.6.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 +17 -0
- package/package.json +8 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# Changelog - @typespec/emitter-framework
|
|
2
2
|
|
|
3
|
+
## 0.6.0
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
- [#7017](https://github.com/microsoft/typespec/pull/7017) [TypeScript] Add various function-related components - FunctionType, FunctionExpression, ArrowFunction, and InterfaceMethod.
|
|
8
|
+
- [#6972](https://github.com/microsoft/typespec/pull/6972) Add support for rendering a Value Expression
|
|
9
|
+
- [#7018](https://github.com/microsoft/typespec/pull/7018) Adds the `TspContextProvider` and `useTsp()` hook for providing and accessing TypeSpec context and the Typekit APIs (e.g. `# Changelog - @typespec/emitter-framework). Adds a new `Output` component that accepts a TypeSpec `Program` and automatically wraps children components with the `TspContextProvider`.
|
|
10
|
+
|
|
11
|
+
### Bump dependencies
|
|
12
|
+
|
|
13
|
+
- [#7017](https://github.com/microsoft/typespec/pull/7017) Alloy 0.11
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
- [#6951](https://github.com/microsoft/typespec/pull/6951) InterfaceMember should use Alloy
|
|
18
|
+
|
|
19
|
+
|
|
3
20
|
## 0.5.0
|
|
4
21
|
|
|
5
22
|
### Features
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@typespec/emitter-framework",
|
|
3
|
-
"version": "0.6.0
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"exports": {
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"peerDependencies": {
|
|
22
22
|
"@alloy-js/core": "^0.11.0",
|
|
23
23
|
"@alloy-js/typescript": "^0.11.0",
|
|
24
|
-
"@typespec/compiler": "^1.0.0-rc.
|
|
25
|
-
"@typespec/http": "^1.0.0-rc.
|
|
26
|
-
"@typespec/rest": "^0.
|
|
24
|
+
"@typespec/compiler": "^1.0.0-rc.1",
|
|
25
|
+
"@typespec/http": "^1.0.0-rc.1",
|
|
26
|
+
"@typespec/rest": "^0.69.0"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@alloy-js/cli": "^0.11.0",
|
|
@@ -31,9 +31,6 @@
|
|
|
31
31
|
"@alloy-js/core": "^0.11.0",
|
|
32
32
|
"@alloy-js/typescript": "^0.11.0",
|
|
33
33
|
"@types/minimist": "^1.2.5",
|
|
34
|
-
"@typespec/compiler": "^1.0.0-rc.0",
|
|
35
|
-
"@typespec/http": "^1.0.0-rc.0",
|
|
36
|
-
"@typespec/rest": "^0.68.0 || >=0.69.0-dev <0.69.0",
|
|
37
34
|
"concurrently": "^9.1.2",
|
|
38
35
|
"minimist": "^1.2.8",
|
|
39
36
|
"prettier": "~3.5.3",
|
|
@@ -44,9 +41,11 @@
|
|
|
44
41
|
"tree-sitter-python": "^0.23.2",
|
|
45
42
|
"tree-sitter-typescript": "^0.23.0",
|
|
46
43
|
"typescript": "~5.8.2",
|
|
47
|
-
"vitest": "^3.0.9"
|
|
44
|
+
"vitest": "^3.0.9",
|
|
45
|
+
"@typespec/compiler": "^1.0.0-rc.1",
|
|
46
|
+
"@typespec/http": "^1.0.0-rc.1",
|
|
47
|
+
"@typespec/rest": "^0.69.0"
|
|
48
48
|
},
|
|
49
|
-
"dependencies": {},
|
|
50
49
|
"scripts": {
|
|
51
50
|
"build": "alloy build",
|
|
52
51
|
"clean": "rimraf ./dist",
|