@microsoft/teamsfx-react 3.0.2 → 3.0.3-alpha.caf90521c.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/README.md +2 -1
- package/package.json +9 -13
package/README.md
CHANGED
|
@@ -20,7 +20,8 @@ Please check the [README](https://github.com/OfficeDev/TeamsFx/blob/main/package
|
|
|
20
20
|
|
|
21
21
|
### Prerequisites
|
|
22
22
|
|
|
23
|
-
- Node.js version
|
|
23
|
+
- Node.js version 18.x.x or higher
|
|
24
|
+
- PNPM version 8.x.x or higher
|
|
24
25
|
- TeamsFx SDK version 0.6.0 or higher
|
|
25
26
|
- A project created by the Teams Toolkit VS Code extension or `teamsfx` CLI tool.
|
|
26
27
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/teamsfx-react",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.3-alpha.caf90521c.0",
|
|
4
4
|
"description": "React helper functions for Microsoft TeamsFx",
|
|
5
5
|
"main": "build/cjs/index.js",
|
|
6
6
|
"module": "build/esm/index.js",
|
|
@@ -28,11 +28,7 @@
|
|
|
28
28
|
"precommit": "npm run check-sensitive && lint-staged"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@fluentui/react-components": "^9.15.0",
|
|
32
31
|
"@istanbuljs/nyc-config-typescript": "^1.0.2",
|
|
33
|
-
"@microsoft/microsoft-graph-client": "^3.0.5",
|
|
34
|
-
"@microsoft/teams-js": "^2.13.0",
|
|
35
|
-
"@microsoft/teamsfx": "^2.2.2",
|
|
36
32
|
"@testing-library/react": "^13.4.0",
|
|
37
33
|
"@types/enzyme": "^3.10.10",
|
|
38
34
|
"@types/jest": "^29.4.0",
|
|
@@ -40,7 +36,7 @@
|
|
|
40
36
|
"@types/react": "^18.0.0",
|
|
41
37
|
"@types/react-dom": "^18.0.0",
|
|
42
38
|
"@typescript-eslint/eslint-plugin": "^5.13.0",
|
|
43
|
-
"@typescript-eslint/parser": "^5.
|
|
39
|
+
"@typescript-eslint/parser": "^6.5.0",
|
|
44
40
|
"eslint": "^8.15.0",
|
|
45
41
|
"eslint-config-standard": "^17.0.0",
|
|
46
42
|
"eslint-plugin-header": "^3.1.1",
|
|
@@ -61,24 +57,24 @@
|
|
|
61
57
|
"mocha": "^10.0.0",
|
|
62
58
|
"nyc": "^15.1.0",
|
|
63
59
|
"prettier": "^2.5.1",
|
|
64
|
-
"react": "^18.2.0",
|
|
65
|
-
"react-dom": "^18.2.0",
|
|
66
60
|
"react-test-renderer": "^18.2.0",
|
|
67
61
|
"rimraf": "^3.0.2",
|
|
68
62
|
"scheduler": "^0.20.2",
|
|
69
|
-
"ts-jest": "
|
|
63
|
+
"ts-jest": "29.1.0",
|
|
64
|
+
"tslib": "^2.3.1",
|
|
70
65
|
"typescript": "latest"
|
|
71
66
|
},
|
|
72
67
|
"peerDependencies": {
|
|
73
68
|
"@fluentui/react-components": "^9.15.0",
|
|
74
|
-
"@microsoft/microsoft-graph-client": "^3.0.
|
|
69
|
+
"@microsoft/microsoft-graph-client": "^3.0.6",
|
|
75
70
|
"@microsoft/teams-js": "^2.13.0",
|
|
76
|
-
"@microsoft/teamsfx": "^2.
|
|
71
|
+
"@microsoft/teamsfx": "^2.2.2",
|
|
77
72
|
"react": ">=16.8.0 <19.0.0",
|
|
78
73
|
"react-dom": ">=16.8.0 <19.0.0"
|
|
79
74
|
},
|
|
80
75
|
"dependencies": {
|
|
81
|
-
"@fluentui/react": "^8.106.1"
|
|
76
|
+
"@fluentui/react": "^8.106.1",
|
|
77
|
+
"@microsoft/teamsfx": "2.3.1-alpha.caf90521c.0"
|
|
82
78
|
},
|
|
83
79
|
"publishConfig": {
|
|
84
80
|
"access": "public"
|
|
@@ -88,5 +84,5 @@
|
|
|
88
84
|
"npx eslint --cache --fix --quiet"
|
|
89
85
|
]
|
|
90
86
|
},
|
|
91
|
-
"gitHead": "
|
|
87
|
+
"gitHead": "3169dd097464127057ce8948df054f58b9838e45"
|
|
92
88
|
}
|