Skip to content

Commit

Permalink
fix: use immer to make mutate side-effect free
Browse files Browse the repository at this point in the history
  • Loading branch information
nokome committed Apr 13, 2019
1 parent e26aeee commit 3288607
Show file tree
Hide file tree
Showing 5 changed files with 111 additions and 252 deletions.
14 changes: 7 additions & 7 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,33 +5,33 @@
"type": "node",
"request": "launch",
"name": "Jest All",
"program": "${workspaceFolder}/js/node_modules/.bin/jest",
"program": "${workspaceFolder}/node_modules/.bin/jest",
"args": ["--runInBand"],
"cwd": "${workspaceFolder}/js",
"cwd": "${workspaceFolder}",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"windows": {
"program": "${workspaceFolder}/js/node_modules/jest/bin/jest"
"program": "${workspaceFolder}/node_modules/jest/bin/jest"
}
},
{
"type": "node",
"request": "launch",
"name": "Jest Current File",
"program": "${workspaceFolder}/js/node_modules/.bin/jest",
"program": "${workspaceFolder}/node_modules/.bin/jest",
"args": ["${relativeFile}"],
"cwd": "${workspaceFolder}/js",
"cwd": "${workspaceFolder}",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"windows": {
"program": "${workspaceFolder}/js/node_modules/jest/bin/jest"
"program": "${workspaceFolder}/node_modules/jest/bin/jest"
}
},
{
"type": "node",
"request": "launch",
"name": "Gulp build",
"program": "${workspaceRoot}/js/node_modules/gulp/bin/gulp.js",
"program": "${workspaceRoot}/node_modules/gulp/bin/gulp.js",
"stopOnEntry": false,
"args": ["build"],
"cwd": "${workspaceRoot}",
Expand Down

0 comments on commit 3288607

Please sign in to comment.