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,6 +1,6 @@
{ {
"@microsoft/generator-sharepoint": { "@microsoft/generator-sharepoint": {
"version": "1.4.1", "version": "1.4.0",
"libraryName": "react-upgrade-me", "libraryName": "react-upgrade-me",
"libraryId": "c32676e6-9536-4db1-b59f-62c7be23f38b", "libraryId": "c32676e6-9536-4db1-b59f-62c7be23f38b",
"environment": "onprem" "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 ## 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 ## Applies to
@ -40,12 +40,8 @@ Version|Date|Comments
## Minimal Path to Awesome ## Minimal Path to Awesome
* Clone this repository Not applicable.
* in the command line run:
* `npm install`
* `gulp serve`
> Include any additional steps as needed.
## Features ## Features

View File

@ -1,13 +1,18 @@
{ {
"entries": [ "version": "2.0",
{ "$schema": "https://dev.office.com/json-schemas/spfx-build/config.2.0.schema.json",
"entry": "./lib/webparts/upgradeMe/UpgradeMeWebPart.js",
"manifest": "./src/webparts/upgradeMe/UpgradeMeWebPart.manifest.json",
"outputPath": "./dist/upgrade-me-web-part.js"
}
],
"externals": {}, "externals": {},
"localizedResources": { "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": { "solution": {
"name": "react-upgrade-me-client-side-solution", "name": "react-upgrade-me-client-side-solution",
"id": "c32676e6-9536-4db1-b59f-62c7be23f38b", "id": "c32676e6-9536-4db1-b59f-62c7be23f38b",
"version": "1.0.0.0" "version": "1.0.0.0",
"includeClientSideAssets": true
}, },
"paths": { "paths": {
"zippedPackage": "solution/react-upgrade-me.sppkg" "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" "test": "gulp test"
}, },
"dependencies": { "dependencies": {
"react": "15.4.2", "@microsoft/sp-core-library": "1.4.1",
"react-dom": "15.4.2", "@microsoft/sp-lodash-subset": "1.4.1",
"@types/react": "0.14.46", "@microsoft/sp-office-ui-fabric-core": "1.4.1",
"@types/react-dom": "0.14.18", "@microsoft/sp-webpart-base": "1.4.1",
"@types/react": "15.6.6",
"@types/react-addons-shallow-compare": "0.14.17", "@types/react-addons-shallow-compare": "0.14.17",
"@types/react-addons-update": "0.14.14", "@types/react-dom": "15.5.6",
"@types/react-addons-test-utils": "0.14.15", "@types/webpack-env": ">=1.12.1 <1.14.0",
"@microsoft/sp-core-library": "~1.1.0", "react": "15.6.2",
"@microsoft/sp-webpart-base": "~1.1.0", "react-dom": "15.4.2"
"@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"
}, },
"devDependencies": { "devDependencies": {
"@microsoft/sp-build-web": "~1.1.0", "@microsoft/sp-build-web": "1.4.1",
"@microsoft/sp-module-interfaces": "~1.1.0", "@microsoft/sp-module-interfaces": "1.4.1",
"@microsoft/sp-webpart-workbench": "~1.1.0", "@microsoft/sp-webpart-workbench": "~1.1.0",
"gulp": "~3.9.1",
"@types/chai": ">=3.4.34 <3.6.0", "@types/chai": ">=3.4.34 <3.6.0",
"@types/mocha": ">=2.2.33 <2.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, "experimentalDecorators": true,
"skipLibCheck": true, "skipLibCheck": true,
"typeRoots": [ "typeRoots": [
"./node_modules/@types" "./node_modules/@types",
"./node_modules/@microsoft"
], ],
"types": [ "types": [
"es6-promise", "es6-promise",