Skip to content
This repository has been archived by the owner on Jun 14, 2021. It is now read-only.

Commit

Permalink
Enable to watch plugins package.json in gulp task
Browse files Browse the repository at this point in the history
  • Loading branch information
Ragg authored and Ragg committed Aug 25, 2017
1 parent 5db5445 commit 484a046
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulpfile.babel.js
Expand Up @@ -403,7 +403,7 @@ export function watch() {
g.watch(paths.src.browser, g.series(cleanBrowserScripts, buildBrowserJs))
g.watch(join(paths.src.renderer, '**/*'), buildRendererWithoutJs)
g.watch(join(paths.src.renderer, '**/*.styl'), compileStyles)
g.watch(join(paths.src.root, 'plugins'), g.parallel(copyPluginsPackageJson, copyExperimentalPluginsPackageJson))
g.watch(join(paths.src.root, '**/package.json'), g.parallel(copyPluginsPackageJson, copyExperimentalPluginsPackageJson))
// g.watch(join(__dirname, 'src/navcodec'), g.parallel(compileNavcodecForElectron, compileNavcodec))
g.watch(join(__dirname, 'node_modules'), symlinkDependencies)
}
Expand Down

0 comments on commit 484a046

Please sign in to comment.