@microsoft/teamsfx-core 1.0.0-rc.0 → 1.0.0-rc.1
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/build/common/constants.d.ts +4 -1
- package/build/common/constants.d.ts.map +1 -1
- package/build/common/constants.js +6 -2
- package/build/common/constants.js.map +1 -1
- package/build/common/samples-config.json +12 -3
- package/build/common/tools.d.ts.map +1 -1
- package/build/common/tools.js +1 -15
- package/build/common/tools.js.map +1 -1
- package/build/core/index.d.ts +1 -0
- package/build/core/index.d.ts.map +1 -1
- package/build/core/index.js +7 -3
- package/build/core/index.js.map +1 -1
- package/build/core/middleware/projectMigrator.d.ts +2 -2
- package/build/core/middleware/projectMigrator.d.ts.map +1 -1
- package/build/core/middleware/projectMigrator.js +76 -21
- package/build/core/middleware/projectMigrator.js.map +1 -1
- package/build/core/middleware/projectSettingsLoader.d.ts.map +1 -1
- package/build/core/middleware/projectSettingsLoader.js +1 -0
- package/build/core/middleware/projectSettingsLoader.js.map +1 -1
- package/build/plugins/resource/appstudio/errors.d.ts.map +1 -1
- package/build/plugins/resource/appstudio/errors.js +5 -3
- package/build/plugins/resource/appstudio/errors.js.map +1 -1
- package/build/plugins/resource/appstudio/index.d.ts.map +1 -1
- package/build/plugins/resource/appstudio/index.js +2 -2
- package/build/plugins/resource/appstudio/index.js.map +1 -1
- package/build/plugins/resource/appstudio/plugin.d.ts.map +1 -1
- package/build/plugins/resource/appstudio/plugin.js +32 -19
- package/build/plugins/resource/appstudio/plugin.js.map +1 -1
- package/build/plugins/resource/appstudio/results.d.ts +1 -1
- package/build/plugins/resource/appstudio/results.d.ts.map +1 -1
- package/build/plugins/resource/appstudio/results.js +1 -1
- package/build/plugins/resource/appstudio/results.js.map +1 -1
- package/build/plugins/resource/bot/aadRegistration.js +1 -1
- package/build/plugins/resource/bot/aadRegistration.js.map +1 -1
- package/build/plugins/solution/fx-solution/arm.d.ts.map +1 -1
- package/build/plugins/solution/fx-solution/arm.js +4 -8
- package/build/plugins/solution/fx-solution/arm.js.map +1 -1
- package/build/plugins/solution/fx-solution/constants.d.ts +0 -3
- package/build/plugins/solution/fx-solution/constants.d.ts.map +1 -1
- package/build/plugins/solution/fx-solution/constants.js +1 -5
- package/build/plugins/solution/fx-solution/constants.js.map +1 -1
- package/build/plugins/solution/fx-solution/question.js +1 -1
- package/build/plugins/solution/fx-solution/question.js.map +1 -1
- package/build/plugins/solution/fx-solution/solution.d.ts.map +1 -1
- package/build/plugins/solution/fx-solution/solution.js +2 -2
- package/build/plugins/solution/fx-solution/solution.js.map +1 -1
- package/build/plugins/solution/fx-solution/v2/getQuestions.d.ts.map +1 -1
- package/build/plugins/solution/fx-solution/v2/getQuestions.js +13 -12
- package/build/plugins/solution/fx-solution/v2/getQuestions.js.map +1 -1
- package/package.json +2 -2
- package/resource/upgrade-change-logs.md +4 -2
- package/templates/azure/provision/simpleAuth.bicep +2 -2
- package/templates/plugins/resource/simpleauth/bicep/simpleAuthProvision.template.bicep +2 -2
- package/templates/plugins/solution/v1/README.md +1 -1
|
@@ -5,7 +5,7 @@ var resourceBaseName = provisionParameters.resourceBaseName
|
|
|
5
5
|
var sku = contains(provisionParameters, 'simpleAuthSku') ? provisionParameters['simpleAuthSku'] : 'F1'
|
|
6
6
|
var serverFarmsName = contains(provisionParameters, 'simpleAuthServerFarmsName') ? provisionParameters['simpleAuthServerFarmsName'] : '${resourceBaseName}simpleAuth'
|
|
7
7
|
var webAppName = contains(provisionParameters, 'simpleAuthWebAppName') ? provisionParameters['simpleAuthWebAppName'] : '${resourceBaseName}simpleAuth'
|
|
8
|
-
var
|
|
8
|
+
var simpleAuthPackageUri = contains(provisionParameters, 'simpleAuthPackageUri') ? provisionParameters['simpleAuthPackageUri'] : 'https://github.com/OfficeDev/TeamsFx/releases/download/simpleauth@0.1.0/Microsoft.TeamsFx.SimpleAuth_0.1.0.zip'
|
|
9
9
|
|
|
10
10
|
resource serverFarms 'Microsoft.Web/serverfarms@2021-02-01' = {
|
|
11
11
|
name: serverFarmsName
|
|
@@ -36,7 +36,7 @@ resource simpleAuthDeploy 'Microsoft.Web/sites/extensions@2021-02-01' = {
|
|
|
36
36
|
parent: webApp
|
|
37
37
|
name: 'MSDeploy'
|
|
38
38
|
properties: {
|
|
39
|
-
packageUri:
|
|
39
|
+
packageUri: simpleAuthPackageUri
|
|
40
40
|
}
|
|
41
41
|
}
|
|
42
42
|
|
|
@@ -16,7 +16,7 @@ There are some configuration changed in your project to make it compatible with
|
|
|
16
16
|
|
|
17
17
|
## Edit the manifest
|
|
18
18
|
|
|
19
|
-
You can find the Teams manifest in
|
|
19
|
+
You can find the Teams app manifest template in `./templates/appPackage/manifest.local.template.json`. It contains template arguments with `{...}` statements which will be replaced at build time. You may add any extra properties or permissions you require to this file. See the [schema reference](https://docs.microsoft.com/en-us/microsoftteams/platform/resources/schema/manifest-schema) for more.
|
|
20
20
|
|
|
21
21
|
## Learn more
|
|
22
22
|
|