9907cc8c67
* chore: Update meta and readme * chore. Update README * Refactor/linting - tslint-xo (#178) * refactor(deps): added tslint, cleanup, and activationEvents modified * refactor(lint): linting... * refactor(changelog): changelo method refactor (should be tested) * refactor(theme-icons): linting and small refactor * refactor(accents-setter): linting and small refactor * chore(travis): added travis file * fix(Lighter): Fix folders icon association * chore: Clean test files * fix(Icons): Add icon to .spec.ts files * chore: Update git icon * Update issue templates (#184)
14 lines
375 B
TypeScript
14 lines
375 B
TypeScript
import * as gulp from 'gulp';
|
|
import * as path from 'path';
|
|
|
|
import Paths from './../../extensions/consts/paths';
|
|
|
|
/*
|
|
* > Watcher
|
|
* Watches files and build the themes
|
|
*/
|
|
export default gulp.task('watch', () => {
|
|
// Commented due
|
|
// gulp.watch(path.join(Paths.SRC, `./themes/**/*.json`), ['build:themes']);
|
|
gulp.watch(path.join(Paths.SRC, './themes/**/*.json'));
|
|
});
|