Skip to content

Commit 0779a0f

Browse files
committed
minnor
1 parent 9cc9d7f commit 0779a0f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ gulp.task('build', function(callback) {
132132

133133
gulp.task('server', lazyRequireTask('./tasks/server'));
134134

135-
gulp.task('edit', ['tutorial:importWatch', "client:sync-resources", 'client:livereload', 'server']);
135+
gulp.task('edit', ['client:webpack', 'tutorial:importWatch', "client:sync-resources", 'client:livereload', 'server']);
136136

137137

138138
gulp.task('dev', function(callback) {

modules/config/webpack.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ module.exports = function (config) {
276276
webpackConfig.plugins.push(
277277
function clearBeforeRun() {
278278
function clear(compiler, callback) {
279-
fse.removeSync(this.options.output.path + '/*');
279+
fse.removeSync(webpackConfig.output.path + '/*');
280280
callback();
281281
}
282282

0 commit comments

Comments
 (0)