Skip to content

Commit

Permalink
avoid cleaning dist for dev build (#833)
Browse files Browse the repository at this point in the history
  • Loading branch information
jchip authored Jun 28, 2018
1 parent 0eaba29 commit c87d77f
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions packages/electrode-archetype-react-app/arch-clap.js
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ Individual .babelrc files were generated for you in src/client and src/server
devbrk: ["dev --inspect-brk"],
dev: {
desc: "Start your app with watch in development mode with webpack-dev-server",
dep: [".remove-log-files", ".development-env", ".clean.build", ".mk-dist-dir"],
dep: [".remove-log-files", ".development-env"],
task: function() {
const args = taskArgs(this.argv);

Expand Down Expand Up @@ -793,11 +793,9 @@ Individual .babelrc files were generated for you in src/client and src/server
desc: "PWA must have dist by running `clap build` first and then start the app server only.",
task: ["build", "server"]
},
"initflow": {
initflow: {
desc: "Initiate Flow for type checker",
task: mkCmd(
`flow init`
)
task: mkCmd(`flow init`)
}
};

Expand Down

0 comments on commit c87d77f

Please sign in to comment.