#908 Downgrade SPFx to v1.4.1 to support SP2019
This commit is contained in:
parent
ceaa732227
commit
8123c8d315
|
@ -77,7 +77,7 @@ You may add CSS via style tags or `link` tags.
|
||||||
If your scripts rely on the classic _spPageContextInfo, you can enable that in the web part property pane.
|
If your scripts rely on the classic _spPageContextInfo, you can enable that in the web part property pane.
|
||||||
|
|
||||||
## Used SharePoint Framework Version
|
## Used SharePoint Framework Version
|
||||||
![drop](https://img.shields.io/badge/drop-1.5.1-green.svg)
|
![drop](https://img.shields.io/badge/drop-1.4.1-green.svg)
|
||||||
|
|
||||||
## Applies to
|
## Applies to
|
||||||
|
|
||||||
|
@ -107,6 +107,7 @@ Version|Date|Comments
|
||||||
1.0.0.10|Jan 16th, 2019|Fix for removing of web part padding
|
1.0.0.10|Jan 16th, 2019|Fix for removing of web part padding
|
||||||
1.0.0.11|March 18th, 2019|Fix for re-loading of script on smart navigation
|
1.0.0.11|March 18th, 2019|Fix for re-loading of script on smart navigation
|
||||||
1.0.0.12|April 15th, 2019|Re-fix for pad removal of web part
|
1.0.0.12|April 15th, 2019|Re-fix for pad removal of web part
|
||||||
|
1.0.0.13|July 1th, 2019|Downgrade to SPFx v1.4.1 to support SP2019
|
||||||
|
|
||||||
## Disclaimer
|
## Disclaimer
|
||||||
**THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.**
|
**THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.**
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
"solution": {
|
"solution": {
|
||||||
"name": "Modern Script Editor web part by Puzzlepart",
|
"name": "Modern Script Editor web part by Puzzlepart",
|
||||||
"id": "1425175f-3ed8-44d2-8fc4-dd1497191294",
|
"id": "1425175f-3ed8-44d2-8fc4-dd1497191294",
|
||||||
"version": "1.0.0.12",
|
"version": "1.0.0.13",
|
||||||
"includeClientSideAssets": true,
|
"includeClientSideAssets": true,
|
||||||
"skipFeatureDeployment": false
|
"skipFeatureDeployment": false
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,36 +1,36 @@
|
||||||
{
|
{
|
||||||
"name": "pzl-script-editor",
|
"name": "pzl-script-editor",
|
||||||
"version": "0.0.1",
|
"version": "1.0.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=0.10.0"
|
"node": ">=0.10.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@microsoft/load-themed-styles": "^1.5.1",
|
"@microsoft/load-themed-styles": "^1.4.1",
|
||||||
"@microsoft/sp-core-library": "1.5.1",
|
"@microsoft/sp-core-library": "1.4.1",
|
||||||
"@microsoft/sp-loader": "^1.5.1",
|
"@microsoft/sp-loader": "^1.4.1",
|
||||||
"@microsoft/sp-webpart-base": "1.5.1",
|
"@microsoft/sp-webpart-base": "1.4.1",
|
||||||
"@types/es6-promise": "0.0.33",
|
"@types/es6-promise": "0.0.33",
|
||||||
"@types/react": "15.6.6",
|
"@types/react": "15.6.6",
|
||||||
"@types/react-dom": "15.5.6",
|
"@types/react-dom": "15.5.6",
|
||||||
"@types/webpack-env": "1.13.1",
|
"@types/webpack-env": "1.13.1",
|
||||||
"office-ui-fabric-react": "^5.118.3",
|
"office-ui-fabric-react": "^5.118.3",
|
||||||
"react": "15.6.2",
|
"react": "15.6.2",
|
||||||
"react-dom": "15.6.2"
|
"react-dom": "15.6.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@microsoft/sp-build-web": "1.5.1",
|
"@microsoft/sp-build-web": "1.4.1",
|
||||||
"@microsoft/sp-module-interfaces": "1.5.1",
|
"@microsoft/sp-module-interfaces": "1.4.1",
|
||||||
"@microsoft/sp-webpart-workbench": "1.5.1",
|
"@microsoft/sp-webpart-workbench": "1.4.1",
|
||||||
"@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",
|
||||||
"gulp": "~3.9.1",
|
"gulp": "~3.9.1",
|
||||||
"webpack-bundle-analyzer": "^2.13.1"
|
"webpack-bundle-analyzer": "^2.13.1"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "gulp bundle",
|
"build": "gulp bundle",
|
||||||
"clean": "gulp clean",
|
"clean": "gulp clean",
|
||||||
"test": "gulp test"
|
"test": "gulp test"
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue