mirror of
https://github.com/pnp/sp-dev-fx-webparts.git
synced 2025-02-05 20:48:17 +00:00
* [react-redux] scaffold project * [react-redux] install redux dependencies * [react-redux] install redux typings * [react-redux] Add redux store and reducers and hook them up with the webpart * [react-redux] Add presentational and container components * [react-redux] Hook up webpart lifecycle methods with redux * [react-redux] configure reactive and non-reactive webpart versions * [react-redux] Add all the semicolons! * [react-redux] mark store as private in webpart * [react-redux] Update README.md * [react-redux] Fix typo in readme * [react-redux] only render webpart once
28 lines
1.3 KiB
JSON
28 lines
1.3 KiB
JSON
{
|
|
"entries": [
|
|
{
|
|
"entry": "./lib/webparts/reactRedux/ReactReduxWebPart.js",
|
|
"manifest": "./src/webparts/reactRedux/ReactReduxWebPart.reactive.manifest.json",
|
|
"outputPath": "./dist/react-redux.bundle.js"
|
|
},
|
|
{
|
|
"entry": "./lib/webparts/reactRedux/ReactReduxWebPart.js",
|
|
"manifest": "./src/webparts/reactRedux/ReactReduxWebPart.nonreactive.manifest.json",
|
|
"outputPath": "./dist/react-redux.bundle.js"
|
|
}
|
|
],
|
|
"externals": {
|
|
"@microsoft/sp-client-base": "node_modules/@microsoft/sp-client-base/dist/sp-client-base.js",
|
|
"@microsoft/sp-client-preview": "node_modules/@microsoft/sp-client-preview/dist/sp-client-preview.js",
|
|
"@microsoft/sp-lodash-subset": "node_modules/@microsoft/sp-lodash-subset/dist/sp-lodash-subset.js",
|
|
"@microsoft/sp-webpart-base": "node_modules/@microsoft/sp-webpart-base/dist/sp-webpart-base.js",
|
|
"office-ui-fabric-react": "node_modules/office-ui-fabric-react/dist/office-ui-fabric-react.js",
|
|
"react": "node_modules/react/dist/react.min.js",
|
|
"react-dom": "node_modules/react-dom/dist/react-dom.min.js",
|
|
"react-dom/server": "node_modules/react-dom/dist/react-dom-server.min.js"
|
|
},
|
|
"localizedResources": {
|
|
"reactReduxStrings": "webparts/reactRedux/loc/{locale}.js"
|
|
}
|
|
}
|