mirror of
https://github.com/pnp/sp-dev-fx-webparts.git
synced 2025-02-07 13:38:39 +00:00
5f77374599
* [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
35 lines
611 B
JSON
35 lines
611 B
JSON
{
|
|
// See http://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "0.1.0",
|
|
"command": "gulp",
|
|
"isShellCommand": true,
|
|
"showOutput": "always",
|
|
"args": [
|
|
"--no-color"
|
|
],
|
|
"tasks": [
|
|
{
|
|
"taskName": "bundle",
|
|
"isBuildCommand": true,
|
|
"problemMatcher": [
|
|
"$tsc"
|
|
]
|
|
},
|
|
{
|
|
"taskName": "test",
|
|
"isTestCommand": true,
|
|
"problemMatcher": [
|
|
"$tsc"
|
|
]
|
|
},
|
|
{
|
|
"taskName": "serve",
|
|
"isWatching": true,
|
|
"problemMatcher": [
|
|
"$tsc"
|
|
]
|
|
}
|
|
]
|
|
}
|