-
Notifications
You must be signed in to change notification settings - Fork 363
Conversation
PS: I think it was this part of
We had an extra compile on |
@@ -16,7 +17,7 @@ var messages = require('./includes/messages.js'); | |||
* @memberof slate-cli.tasks.build | |||
* @static | |||
*/ | |||
gulp.task('build:css', ['lint:css'], function() { | |||
gulp.task('build:css', [].concat(lintTask), function() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any reason not to just put lintTask
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My thought was to make it more obvious that additional tasks should be added in the first array. But maybe that's overkill. Thoughts?
Sweeeeeet 👍 |
R+ 🚀 re: watchify, might be worth opening an issue on the GH project. |
👍 |
#toolate |
* Clone a repo to your project folder * Changes * changes * Changes * Change * refactor some code * install dependencies * remove random files * git init and replace slate pkg * add git/yeoman tpl files/env questions * finish todos and start commenting code * remove extra logs * update comment on private function * add last private function comment * absolute dep * commit stuff * get generator files from slate repo * pull templates from cache * fix indent
* Clone a repo to your project folder * Changes * changes * Changes * Change * refactor some code * install dependencies * remove random files * git init and replace slate pkg * add git/yeoman tpl files/env questions * finish todos and start commenting code * remove extra logs * update comment on private function * add last private function comment * absolute dep * commit stuff * get generator files from slate repo * pull templates from cache * fix indent
* Clone a repo to your project folder * Changes * changes * Changes * Change * refactor some code * install dependencies * remove random files * git init and replace slate pkg * add git/yeoman tpl files/env questions * finish todos and start commenting code * remove extra logs * update comment on private function * add last private function comment * absolute dep * commit stuff * get generator files from slate repo * pull templates from cache * fix indent
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
@Shopify/themes-fed
Added a boolean to toogle in config.js to enable/disable linting on build/watch. You can always run the test task to lint.
I ended combining an update to browserify in here. Watch task wasn't working very well - sometimes it wouldn't upload, other times it would upload twice - so I flipped it over to chokidar and set it to re-bundle on file change. We get to remove watchify which was the 5th slowest dependency. @m-ux and @t-kelly if you guys could review this in depth that would be great.