SPFx 1.4.1 version

This commit is contained in:
Hugo Bernier 2020-08-27 00:53:38 -04:00
parent 1b48eebae9
commit 77023e472b
7 changed files with 9315 additions and 3188 deletions

View File

@ -1,8 +1,8 @@
{
"@microsoft/generator-sharepoint": {
"version": "1.4.1",
"version": "1.4.0",
"libraryName": "react-upgrade-me",
"libraryId": "c32676e6-9536-4db1-b59f-62c7be23f38b",
"environment": "onprem"
}
}
}

View File

@ -8,7 +8,7 @@ This web part does nothing, really. It is intended to be used to test upgrading
## Used SharePoint Framework Version
![1.1.0](https://img.shields.io/badge/version-1.1.0-green.svg)
![1.4.1](https://img.shields.io/badge/version-1.4.1-green.svg)
## Applies to
@ -40,12 +40,8 @@ Version|Date|Comments
## Minimal Path to Awesome
* Clone this repository
* in the command line run:
* `npm install`
* `gulp serve`
Not applicable.
> Include any additional steps as needed.
## Features

View File

@ -1,13 +1,18 @@
{
"entries": [
{
"entry": "./lib/webparts/upgradeMe/UpgradeMeWebPart.js",
"manifest": "./src/webparts/upgradeMe/UpgradeMeWebPart.manifest.json",
"outputPath": "./dist/upgrade-me-web-part.js"
}
],
"version": "2.0",
"$schema": "https://dev.office.com/json-schemas/spfx-build/config.2.0.schema.json",
"externals": {},
"localizedResources": {
"UpgradeMeWebPartStrings": "webparts/upgradeMe/loc/{locale}.js"
"UpgradeMeWebPartStrings": "lib/webparts/upgradeMe/loc/{locale}.js"
},
"bundles": {
"upgrade-me-web-part": {
"components": [
{
"entrypoint": "./lib/webparts/upgradeMe/UpgradeMeWebPart.js",
"manifest": "./src/webparts/upgradeMe/UpgradeMeWebPart.manifest.json"
}
]
}
}
}

View File

@ -3,7 +3,8 @@
"solution": {
"name": "react-upgrade-me-client-side-solution",
"id": "c32676e6-9536-4db1-b59f-62c7be23f38b",
"version": "1.0.0.0"
"version": "1.0.0.0",
"includeClientSideAssets": true
},
"paths": {
"zippedPackage": "solution/react-upgrade-me.sppkg"

File diff suppressed because it is too large Load Diff

View File

@ -11,26 +11,24 @@
"test": "gulp test"
},
"dependencies": {
"react": "15.4.2",
"react-dom": "15.4.2",
"@types/react": "0.14.46",
"@types/react-dom": "0.14.18",
"@microsoft/sp-core-library": "1.4.1",
"@microsoft/sp-lodash-subset": "1.4.1",
"@microsoft/sp-office-ui-fabric-core": "1.4.1",
"@microsoft/sp-webpart-base": "1.4.1",
"@types/react": "15.6.6",
"@types/react-addons-shallow-compare": "0.14.17",
"@types/react-addons-update": "0.14.14",
"@types/react-addons-test-utils": "0.14.15",
"@microsoft/sp-core-library": "~1.1.0",
"@microsoft/sp-webpart-base": "~1.1.0",
"@microsoft/sp-lodash-subset": "~1.1.0",
"@microsoft/sp-office-ui-fabric-core": "~1.4.0-0",
"@types/webpack-env": ">=1.12.1 <1.14.0"
"@types/react-dom": "15.5.6",
"@types/webpack-env": ">=1.12.1 <1.14.0",
"react": "15.6.2",
"react-dom": "15.4.2"
},
"devDependencies": {
"@microsoft/sp-build-web": "~1.1.0",
"@microsoft/sp-module-interfaces": "~1.1.0",
"@microsoft/sp-build-web": "1.4.1",
"@microsoft/sp-module-interfaces": "1.4.1",
"@microsoft/sp-webpart-workbench": "~1.1.0",
"gulp": "~3.9.1",
"@types/chai": ">=3.4.34 <3.6.0",
"@types/mocha": ">=2.2.33 <2.6.0",
"ajv": "~5.2.2"
"ajv": "5.2.2",
"gulp": "~3.9.1"
}
}

View File

@ -9,7 +9,8 @@
"experimentalDecorators": true,
"skipLibCheck": true,
"typeRoots": [
"./node_modules/@types"
"./node_modules/@types",
"./node_modules/@microsoft"
],
"types": [
"es6-promise",