Revert "Update to SPFx 1.11.0"

This reverts commit 5353d0c812.
This commit is contained in:
Joel Rodrigues 2020-10-05 11:00:18 +01:00
parent a0bc29e444
commit f6ac93a953
6 changed files with 1144 additions and 1731 deletions

View File

@ -3,7 +3,7 @@
"packageManager": "pnpm", "packageManager": "pnpm",
"isCreatingSolution": true, "isCreatingSolution": true,
"environment": "spo", "environment": "spo",
"version": "1.11.0", "version": "1.10.0",
"libraryName": "workbench-customizer", "libraryName": "workbench-customizer",
"libraryId": "5d6f4a5a-9d2b-4a93-a283-16b8f5ea75d6", "libraryId": "5d6f4a5a-9d2b-4a93-a283-16b8f5ea75d6",
"componentType": "webpart" "componentType": "webpart"

View File

@ -26,7 +26,7 @@ Note: This approach will not "pollute" your solution with additional resources o
## Used SharePoint Framework Version ## Used SharePoint Framework Version
![1.11.0](https://img.shields.io/badge/drop-1.10.0-green.svg) ![1.10.0](https://img.shields.io/badge/drop-1.10.0-green.svg)
## Applies to ## Applies to
@ -53,7 +53,6 @@ Version|Date|Comments
1.3|July 07, 2020|Simplified web part 1.3|July 07, 2020|Simplified web part
1.4|July 28, 2020|Update styles to minimise toolbar overlap 1.4|July 28, 2020|Update styles to minimise toolbar overlap
1.5|July 30, 2020|Update styles to improve full-width mode 1.5|July 30, 2020|Update styles to improve full-width mode
1.5|October 05, 2020|Update to SPFx 1.11.0
## Disclaimer ## Disclaimer

View File

@ -3,16 +3,9 @@
"solution": { "solution": {
"name": "workbench-customizer-client-side-solution", "name": "workbench-customizer-client-side-solution",
"id": "5d6f4a5a-9d2b-4a93-a283-16b8f5ea75d6", "id": "5d6f4a5a-9d2b-4a93-a283-16b8f5ea75d6",
"version": "1.6.0.0", "version": "1.5.0.0",
"includeClientSideAssets": true, "includeClientSideAssets": true,
"skipFeatureDeployment": true, "skipFeatureDeployment": true
"developer": {
"name": "Contoso",
"privacyUrl": "https://contoso.com/privacy",
"termsOfUseUrl": "https://contoso.com/terms-of-use",
"websiteUrl": "https://contoso.com/my-app",
"mpnId": "000000"
}
}, },
"paths": { "paths": {
"zippedPackage": "solution/workbench-customizer.sppkg" "zippedPackage": "solution/workbench-customizer.sppkg"

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{ {
"name": "workbench-customizer", "name": "workbench-customizer",
"version": "1.6.0", "version": "1.5.0",
"private": true, "private": true,
"main": "lib/index.js", "main": "lib/index.js",
"engines": { "engines": {
@ -12,19 +12,21 @@
"test": "gulp test" "test": "gulp test"
}, },
"dependencies": { "dependencies": {
"@microsoft/sp-core-library": "1.11.0", "@microsoft/sp-core-library": "1.10.0",
"@microsoft/sp-lodash-subset": "1.11.0", "@microsoft/sp-lodash-subset": "1.10.0",
"@microsoft/sp-office-ui-fabric-core": "1.11.0", "@microsoft/sp-office-ui-fabric-core": "1.10.0",
"@microsoft/sp-property-pane": "1.11.0", "@microsoft/sp-property-pane": "1.10.0",
"@microsoft/sp-webpart-base": "1.11.0", "@microsoft/sp-webpart-base": "1.10.0",
"@types/es6-promise": "0.0.33",
"@types/webpack-env": "1.13.1",
"npm": "^6.7.0" "npm": "^6.7.0"
}, },
"devDependencies": { "devDependencies": {
"@microsoft/rush-stack-compiler-3.3": "0.3.5", "@microsoft/rush-stack-compiler-3.3": "0.3.5",
"@microsoft/sp-build-web": "1.11.0", "@microsoft/sp-build-web": "1.10.0",
"@microsoft/sp-module-interfaces": "1.11.0", "@microsoft/sp-module-interfaces": "1.10.0",
"@microsoft/sp-tslint-rules": "1.11.0", "@microsoft/sp-tslint-rules": "1.10.0",
"@microsoft/sp-webpart-workbench": "1.11.0", "@microsoft/sp-webpart-workbench": "1.10.0",
"@types/chai": "3.4.34", "@types/chai": "3.4.34",
"@types/mocha": "2.2.38", "@types/mocha": "2.2.38",
"ajv": "~5.2.2", "ajv": "~5.2.2",

View File

@ -29,8 +29,7 @@
] ]
}, },
"include": [ "include": [
"src/**/*.ts", "src/**/*.ts"
"src/**/*.tsx"
], ],
"exclude": [ "exclude": [
"node_modules", "node_modules",