react-real-time - Replaced the '@microsoft/sp-client-preview ' package with '@microsoft/sp-webpart-base' (#69)
* Replaced Microsoft Flow with Azure Logic Apps * Update README.md * Replaced the '@microsoft/sp-client-preview ' package with '@microsoft/sp-webpart-base' for the BaseClientSideWebPart definition according to the SPFx Drop 5 release notes (https://github.com/sharepoint/sp-dev-docs/wiki/Release-Notes-Drop-5)
This commit is contained in:
parent
73460d600a
commit
9a333aebff
|
@ -8,7 +8,7 @@
|
|||
],
|
||||
"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-webpart-base": "node_modules/@microsoft/sp-webpart-base/dist/sp-webpart-base.js",
|
||||
"@microsoft/sp-lodash-subset": "node_modules/@microsoft/sp-lodash-subset/dist/sp-lodash-subset.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",
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@microsoft/sp-client-base": "~0.4.0",
|
||||
"@microsoft/sp-client-preview": "~0.5.0",
|
||||
"@microsoft/sp-webpart-base": "^0.1.0",
|
||||
"@types/pluralize": "0.0.27",
|
||||
"@types/socket.io-client": "^1.4.27",
|
||||
"office-ui-fabric-react": "0.36.0",
|
||||
|
|
|
@ -5,7 +5,7 @@ import {
|
|||
IPropertyPaneSettings,
|
||||
IWebPartContext,
|
||||
PropertyPaneTextField
|
||||
} from '@microsoft/sp-client-preview';
|
||||
} from '@microsoft/sp-webpart-base';
|
||||
|
||||
import * as strings from 'realTimeNewsFeedStrings';
|
||||
import RealTimeNewsFeed, { IRealTimeNewsFeedProps } from './components/RealTimeNewsFeed';
|
||||
|
|
Loading…
Reference in New Issue