react-functional-component-with-data-fetch upgrade to spfx1.14.0
This commit is contained in:
parent
9e2d867a88
commit
2572588021
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"@microsoft/generator-sharepoint": {
|
||||
"version": "1.13.1",
|
||||
"version": "1.14.0",
|
||||
"libraryName": "teams-tracker",
|
||||
"libraryId": "f5a39f0e-c504-4969-8e47-1ed85d9f8a68",
|
||||
"environment": "spo",
|
||||
|
|
|
@ -9,7 +9,7 @@ This web part demonstrates building a React functional component that uses data
|
|||
|
||||
## Compatibility
|
||||
|
||||
![SPFx 1.13.1](https://img.shields.io/badge/SPFx-1.13.1-green.svg)
|
||||
![SPFx 1.14.0](https://img.shields.io/badge/SPFx-1.14.0-green.svg)
|
||||
![Node.js v14 | v12](https://img.shields.io/badge/Node.js-v14%20%7C%20v12-green.svg)
|
||||
![Compatible with SharePoint Online](https://img.shields.io/badge/SharePoint%20Online-Compatible-green.svg)
|
||||
![Does not work with SharePoint 2019](https://img.shields.io/badge/SharePoint%20Server%202019-Incompatible-red.svg "SharePoint Server 2019 requires SPFx 1.4.1 or lower")
|
||||
|
@ -38,6 +38,7 @@ Version|Date|Comments
|
|||
-------|----|--------
|
||||
1.0|June 14, 2019|Initial release
|
||||
2.0|February 15, 2022|Upgrade to SPFx v1.13.1
|
||||
2.1|February 21, 2022|Upgrade to SPFx v1.14.0
|
||||
|
||||
## Minimal Path to Awesome
|
||||
|
||||
|
|
|
@ -3,18 +3,38 @@
|
|||
"solution": {
|
||||
"name": "teams-tracker-client-side-solution",
|
||||
"id": "f5a39f0e-c504-4969-8e47-1ed85d9f8a68",
|
||||
"version": "2.0.0.0",
|
||||
"developer": {
|
||||
"name": "",
|
||||
"privacyUrl": "",
|
||||
"termsOfUseUrl": "",
|
||||
"websiteUrl": "",
|
||||
"mpnId": "SPFx-1.13.1"
|
||||
},
|
||||
"version": "2.1.0.0",
|
||||
"includeClientSideAssets": true,
|
||||
"isDomainIsolated": false
|
||||
"skipFeatureDeployment": true,
|
||||
"isDomainIsolated": false,
|
||||
"developer": {
|
||||
"name": "",
|
||||
"privacyUrl": "",
|
||||
"termsOfUseUrl": "",
|
||||
"websiteUrl": "",
|
||||
"mpnId": "SPFx-1.14.0"
|
||||
},
|
||||
"metadata": {
|
||||
"shortDescription": {
|
||||
"default": "teams-tracker description"
|
||||
},
|
||||
"longDescription": {
|
||||
"default": "teams-tracker description"
|
||||
},
|
||||
"screenshotPaths": [],
|
||||
"videoUrl": "",
|
||||
"categories": []
|
||||
},
|
||||
"features": [
|
||||
{
|
||||
"title": "teams-tracker Feature",
|
||||
"description": "The feature that activates elements of the teams-tracker solution.",
|
||||
"id": "8d5b3cd2-a043-40e6-9229-44ad307fd36f",
|
||||
"version": "2.1.0.0"
|
||||
}
|
||||
]
|
||||
},
|
||||
"paths": {
|
||||
"zippedPackage": "solution/teams-tracker.sppkg"
|
||||
}
|
||||
}
|
||||
}
|
File diff suppressed because it is too large
Load Diff
|
@ -10,11 +10,11 @@
|
|||
"test": "gulp test"
|
||||
},
|
||||
"dependencies": {
|
||||
"@microsoft/sp-core-library": "1.13.1",
|
||||
"@microsoft/sp-lodash-subset": "1.13.1",
|
||||
"@microsoft/sp-office-ui-fabric-core": "1.13.1",
|
||||
"@microsoft/sp-property-pane": "1.13.1",
|
||||
"@microsoft/sp-webpart-base": "1.13.1",
|
||||
"@microsoft/sp-core-library": "1.14.0",
|
||||
"@microsoft/sp-lodash-subset": "1.14.0",
|
||||
"@microsoft/sp-office-ui-fabric-core": "1.14.0",
|
||||
"@microsoft/sp-property-pane": "1.14.0",
|
||||
"@microsoft/sp-webpart-base": "1.14.0",
|
||||
"@pnp/common": "^1.3.3",
|
||||
"@pnp/graph": "^1.3.3",
|
||||
"@pnp/logging": "^1.3.3",
|
||||
|
@ -28,9 +28,9 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@microsoft/rush-stack-compiler-3.9": "0.4.47",
|
||||
"@microsoft/sp-build-web": "1.13.1",
|
||||
"@microsoft/sp-module-interfaces": "1.13.1",
|
||||
"@microsoft/sp-tslint-rules": "1.13.1",
|
||||
"@microsoft/sp-build-web": "1.14.0",
|
||||
"@microsoft/sp-module-interfaces": "1.14.0",
|
||||
"@microsoft/sp-tslint-rules": "1.14.0",
|
||||
"@types/es6-promise": "0.0.33",
|
||||
"@types/react": "16.9.51",
|
||||
"@types/react-dom": "16.9.8",
|
||||
|
|
Loading…
Reference in New Issue