mirror of
https://github.com/home-assistant/frontend.git
synced 2025-06-28 21:16:34 +00:00

* Build ES5/ES6 in parallel to share gulp deps * Rollup es5 files into build-temp-es5 * Use correct ES5 path for compatibility.js
5 lines
168 B
JavaScript
5 lines
168 B
JavaScript
const del = require('del');
|
|
const gulp = require('gulp');
|
|
|
|
gulp.task('clean', () => del(['build-es5', 'build', 'build-temp-es5', 'build-temp', 'build-translations']));
|