Upgraded to SPFx v1.12.1

This commit is contained in:
Nanddeep Nachan 2021-09-28 15:31:50 +00:00
parent 39ea25afc2
commit 9848e665e9
7 changed files with 3056 additions and 2998 deletions

View File

@ -11,6 +11,7 @@ dist
lib
solution
temp
release
*.sppkg
# Coverage directory used by tools like istanbul

View File

@ -2,7 +2,7 @@
"@microsoft/generator-sharepoint": {
"isCreatingSolution": true,
"environment": "spo",
"version": "1.12.0",
"version": "1.12.1",
"libraryName": "spfx-ms-teams-questionnaire-meeting-app",
"libraryId": "78093b48-2c62-4536-8f93-95ec16b01f8b",
"packageManager": "npm",

View File

@ -2,7 +2,7 @@
## Summary
SPFx v1.12 support for Microsoft Teams meeting apps development. Questionnaire meeting app provides Pre-meeting app experience for MS Teams meeting attendees to ask the questions related to meeting before the meeting starts.
SPFx v1.12.1 support for Microsoft Teams meeting apps development. Questionnaire meeting app provides Pre-meeting app experience for MS Teams meeting attendees to ask the questions related to meeting before the meeting starts.
![WebPart Preview](./assets/web-part-preview.gif)
@ -49,7 +49,7 @@ spfx-react-teams-meeting-app-questionnaire
## Compatibility
![SPFx 1.12](https://img.shields.io/badge/SPFx-1.12.0-green.svg)
![SPFx 1.12.1](https://img.shields.io/badge/SPFx-1.12.1-green.svg)
![Node.js LTS 10.x | LTS 12.x](https://img.shields.io/badge/Node.js-LTS%2010%20%7C%20LTS%20.12.x-green.svg)
![SharePoint Online](https://img.shields.io/badge/SharePoint-Online-yellow.svg)
![Teams Yes: Designed for Microsoft Teams](https://img.shields.io/badge/Teams-Yes-green.svg "Designed for Microsoft Teams")
@ -124,6 +124,7 @@ spfx-react-teams-meeting-app-questionnaire|[Smita Nachan](https://www.linkedin.c
Version|Date|Comments
-------|----|--------
2.0.0|September 28, 2021|Upgraded to SPFx v1.12.1 (Nanddeep Nachan, Smita Nachan)
1.0.0|March 22, 2021|Initial release
## Disclaimer

View File

@ -1,4 +1,4 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/copy-assets.schema.json",
"deployCdnPath": "temp/deploy"
"deployCdnPath": "./release/assets/"
}

View File

@ -1,6 +1,6 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/deploy-azure-storage.schema.json",
"workingDir": "./temp/deploy/",
"workingDir": "./release/assets/",
"account": "<!-- STORAGE ACCOUNT NAME -->",
"container": "spfx-ms-teams-questionnaire-meeting-app",
"accessKey": "<!-- ACCESS KEY -->"

File diff suppressed because it is too large Load Diff

View File

@ -9,11 +9,11 @@
"test": "gulp test"
},
"dependencies": {
"@microsoft/sp-core-library": "1.12.0",
"@microsoft/sp-lodash-subset": "1.12.0",
"@microsoft/sp-office-ui-fabric-core": "1.12.0",
"@microsoft/sp-property-pane": "1.12.0",
"@microsoft/sp-webpart-base": "1.12.0",
"@microsoft/sp-core-library": "1.12.1",
"@microsoft/sp-lodash-subset": "1.12.1",
"@microsoft/sp-office-ui-fabric-core": "1.12.1",
"@microsoft/sp-property-pane": "1.12.1",
"@microsoft/sp-webpart-base": "1.12.1",
"@pnp/sp": "2.3.1-beta0",
"moment": "^2.29.1",
"office-ui-fabric-react": "7.156.0",
@ -21,15 +21,15 @@
"react-dom": "16.9.0"
},
"devDependencies": {
"@microsoft/rush-stack-compiler-3.7": "0.2.3",
"@microsoft/sp-build-web": "1.12.1",
"@microsoft/sp-module-interfaces": "1.12.1",
"@microsoft/sp-tslint-rules": "1.12.1",
"@microsoft/sp-webpart-workbench": "1.12.1",
"@types/react": "16.9.36",
"@types/react-dom": "16.9.8",
"@microsoft/sp-build-web": "1.12.0",
"@microsoft/sp-tslint-rules": "1.12.0",
"@microsoft/sp-module-interfaces": "1.12.0",
"@microsoft/sp-webpart-workbench": "1.12.0",
"@microsoft/rush-stack-compiler-3.7": "0.2.3",
"gulp": "~4.0.2",
"@types/webpack-env": "1.13.1",
"ajv": "~5.2.2",
"@types/webpack-env": "1.13.1"
"gulp": "~4.0.2"
}
}