@microsoft/teamsfx 2.0.0-beta.0 → 2.0.0-rc.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/LICENSE +21 -21
- package/dist/index.esm2017.js +429 -229
- package/dist/index.esm2017.js.map +1 -1
- package/dist/index.esm2017.mjs +1644 -549
- package/dist/index.esm2017.mjs.map +1 -1
- package/dist/index.esm5.js +447 -229
- package/dist/index.esm5.js.map +1 -1
- package/dist/index.node.cjs.js +1700 -547
- package/dist/index.node.cjs.js.map +1 -1
- package/package.json +9 -8
- package/types/teamsfx.d.ts +2197 -1648
- package/CHANGELOG.md +0 -28
- package/NOTICE.txt +0 -9242
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/teamsfx",
|
|
3
|
-
"version": "2.0.0-
|
|
3
|
+
"version": "2.0.0-rc.0",
|
|
4
4
|
"description": "Microsoft Teams Framework for Node.js and browser.",
|
|
5
5
|
"main": "dist/index.node.cjs.js",
|
|
6
6
|
"browser": "dist/index.esm2017.js",
|
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
"test": "npm run test:unit && npm run test:e2e",
|
|
20
20
|
"test:unit:browser": "karma start --single-run --unit",
|
|
21
21
|
"test:unit:node": "nyc --no-clean -- mocha 'test/unit/{,!(browser)/**/}*.spec.ts' --file src/index.ts -r config/mocha.env.ts --config config/mocharc.node.js",
|
|
22
|
-
"test:unit": "npm run test:unit:node && npm run test:unit:browser",
|
|
22
|
+
"test:unit": "npm run test:unit:node && npm run test:unit:browser ",
|
|
23
23
|
"test:e2e:browser": "karma start --single-run --integration",
|
|
24
|
-
"test:e2e:node": "mocha 'test/e2e/node/*.spec.ts' --file src/index.ts -r config/mocha.env.ts --config config/mocharc.node.js --reporter
|
|
24
|
+
"test:e2e:node": "mocha --reporter mocha-multi-reporters 'test/e2e/node/*.spec.ts' --file src/index.ts -r config/mocha.env.ts --config config/mocharc.node.js --reporter-options configFile=config/mocha-multi-reporter.json",
|
|
25
25
|
"test:e2e": "npm run test:e2e:node && npm run test:e2e:browser",
|
|
26
26
|
"ui-test": "mocha --no-timeouts -r test/mocha.env.ts -r ts-node/register test/ui/**/*.spec.ts --exit",
|
|
27
27
|
"check-sensitive": "npx eslint --plugin 'no-secrets' --cache --ignore-pattern 'package.json' --ignore-pattern 'package-lock.json'",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"@azure/identity": "^2.0.1",
|
|
50
50
|
"@azure/msal-browser": "^2.21.0",
|
|
51
51
|
"@azure/msal-node": "~1.1.0",
|
|
52
|
-
"@microsoft/adaptivecards-tools": "^1.0.0",
|
|
52
|
+
"@microsoft/adaptivecards-tools": "^1.2.0-rc.0",
|
|
53
53
|
"@microsoft/microsoft-graph-client": "^3.0.1",
|
|
54
54
|
"axios": "^0.27.2",
|
|
55
55
|
"botbuilder": ">=4.15.0 <5.0.0",
|
|
@@ -64,8 +64,7 @@
|
|
|
64
64
|
"@microsoft/teams-js": "^2.0.0"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
|
-
"@azure/arm-sql": "^
|
|
68
|
-
"@azure/ms-rest-nodeauth": "^3.1.1",
|
|
67
|
+
"@azure/arm-sql": "^9.0.0",
|
|
69
68
|
"@commitlint/cli": "^14.1.0",
|
|
70
69
|
"@commitlint/config-conventional": "^12.0.1",
|
|
71
70
|
"@istanbuljs/nyc-config-typescript": "^1.0.1",
|
|
@@ -77,6 +76,7 @@
|
|
|
77
76
|
"@types/chai-as-promised": "^7.1.4",
|
|
78
77
|
"@types/fs-extra": "^9.0.11",
|
|
79
78
|
"@types/mocha": "^9.0.0",
|
|
79
|
+
"@types/mochawesome": "^6.2.1",
|
|
80
80
|
"@types/node": "^16.11.7",
|
|
81
81
|
"@types/sinon": "^10.0.6",
|
|
82
82
|
"@types/tedious": "^4.0.5",
|
|
@@ -111,7 +111,8 @@
|
|
|
111
111
|
"karma-webpack": "^5.0.0",
|
|
112
112
|
"lint-staged": "^11.2.6",
|
|
113
113
|
"mocha": "^9.2.0",
|
|
114
|
-
"mocha-
|
|
114
|
+
"mocha-multi-reporters": "^1.5.1",
|
|
115
|
+
"mochawesome": "^7.0.1",
|
|
115
116
|
"mocked-env": "^1.3.5",
|
|
116
117
|
"nyc": "^15.1.0",
|
|
117
118
|
"prettier": "^2.4.1",
|
|
@@ -128,7 +129,7 @@
|
|
|
128
129
|
"webpack": "^5.62.1",
|
|
129
130
|
"yargs": "^17.2.1"
|
|
130
131
|
},
|
|
131
|
-
"gitHead": "
|
|
132
|
+
"gitHead": "7ee811aedc0f9ec4d093974bb0c1041d336da62e",
|
|
132
133
|
"publishConfig": {
|
|
133
134
|
"access": "public"
|
|
134
135
|
},
|