mirror of
https://github.com/pnp/sp-dev-fx-webparts.git
synced 2025-02-07 13:38:39 +00:00
c909db5b4d
* [react-mobx] scaffold project + migrate to drop5 * [react-mobx] install mobx dependencies * [react-mobx] configure reactive and nonreactive webpart version * [react-mobx] add presentational and container components * [react-mobx] Replace description field with name * [react-mobx] Add mobx store and hook up webpart & components * [react-mobx] update readme * [react-mobx] remove custom tslint.config * [react-mobx] only render the 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"
|
|
]
|
|
}
|
|
]
|
|
}
|