diff --git a/samples/react-invitation-manager/README.md b/samples/react-invitation-manager/README.md index aa042f89b..c8802e134 100644 --- a/samples/react-invitation-manager/README.md +++ b/samples/react-invitation-manager/README.md @@ -15,7 +15,7 @@ Look at this to go deep: ![The invitation manager web part displayed in SharePoint workbench](./assets/SPFx-Invitation-Manager.gif) ## Used SharePoint Framework Version -![drop](https://img.shields.io/badge/drop-GA-green.svg) +![drop](https://img.shields.io/badge/drop-1.3.0-green.svg) ## Applies to @@ -33,6 +33,7 @@ react-invitation-manager|Giuliano De Luca ([@giuleon](https://twitter.com/giuleo Version|Date|Comments -------|----|-------- 1.0.0|July 14, 2017|Initial release +1.0.1|October 09, 2017|Updated to version 1.3.0 ## 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.** diff --git a/samples/react-invitation-manager/config/config.json b/samples/react-invitation-manager/config/config.json index 888d734b5..36c3bf8f8 100644 --- a/samples/react-invitation-manager/config/config.json +++ b/samples/react-invitation-manager/config/config.json @@ -1,13 +1,14 @@ { - "entries": [ - { - "entry": "./lib/webparts/invitationManager/InvitationManagerWebPart.js", - "manifest": "./src/webparts/invitationManager/InvitationManagerWebPart.manifest.json", - "outputPath": "./dist/invitation-manager.bundle.js" + "$schema": "https://dev.office.com/json-schemas/spfx-build/config.2.0.schema.json", + "version": "2.0", + "bundles": { + "invitation-manager-bundle": { + "components": [ + { + "entrypoint": "./lib/webparts/invitationManager/InvitationManagerWebPart.js", + "manifest": "./src/webparts/invitationManager/InvitationManagerWebPart.manifest.json" + } + ] } - ], - "externals": {}, - "localizedResources": { - "invitationManagerStrings": "webparts/invitationManager/loc/{locale}.js" } } diff --git a/samples/react-invitation-manager/config/package-solution.json b/samples/react-invitation-manager/config/package-solution.json index c3d120b29..6d6440d58 100644 --- a/samples/react-invitation-manager/config/package-solution.json +++ b/samples/react-invitation-manager/config/package-solution.json @@ -2,7 +2,7 @@ "solution": { "name": "react-invitation-manager-client-side-solution", "id": "7d08f6e8-b222-4ed7-8910-8ea911d117fe", - "version": "1.0.0.0" + "version": "1.0.1.0" }, "paths": { "zippedPackage": "solution/react-invitation-manager.sppkg" diff --git a/samples/react-invitation-manager/package.json b/samples/react-invitation-manager/package.json index bd083409a..d9cbae7b5 100644 --- a/samples/react-invitation-manager/package.json +++ b/samples/react-invitation-manager/package.json @@ -1,6 +1,6 @@ { "name": "react-invitation-manager", - "version": "1.1.0", + "version": "1.0.1", "private": true, "engines": { "node": ">=0.10.0" @@ -10,23 +10,23 @@ "url": "http://www.delucagiuliano.com" }, "dependencies": { - "@microsoft/sp-client-base": "~1.0.0", - "@microsoft/sp-core-library": "~1.0.0", - "@microsoft/sp-webpart-base": "~1.0.0", - "@types/react": "0.14.46", + "@microsoft/sp-core-library": "~1.3.0", + "@microsoft/sp-webpart-base": "~1.3.0", + "@types/react": "15.0.38", "@types/react-addons-shallow-compare": "0.14.17", "@types/react-addons-test-utils": "0.14.15", "@types/react-addons-update": "0.14.14", "@types/react-dom": "0.14.18", "@types/webpack-env": ">=1.12.1 <1.14.0", "adal-angular": "1.0.12", + "office-ui-fabric-react": "^4.40.1", "react": "15.4.2", "react-dom": "15.4.2" }, "devDependencies": { - "@microsoft/sp-build-web": "~1.0.0", - "@microsoft/sp-module-interfaces": "~1.0.0", - "@microsoft/sp-webpart-workbench": "~1.0.0", + "@microsoft/sp-build-web": "~1.3.0", + "@microsoft/sp-module-interfaces": "~1.3.0", + "@microsoft/sp-webpart-workbench": "~1.3.0", "@types/adal": "^1.0.25", "@types/chai": ">=3.4.34 <3.6.0", "@types/mocha": ">=2.2.33 <2.6.0",