mirror of
https://github.com/home-assistant/frontend.git
synced 2025-12-20 18:58:57 +00:00
* Add build using polymer-build * Use bundle strategies to tweak stripExcludes * Only vulcanize hass.io panel * Rename hassio panel generate script * Remove hydrolysis * Get it all somewhat working * Fixes * Allow ES2015 + fix minify JS * Clarify we need to fix service worker minify * Move service worker template out of tasks folder * Fix broken CSS * Wrap it up * Fix maps
7 lines
119 B
JavaScript
7 lines
119 B
JavaScript
import del from 'del';
|
|
import gulp from 'gulp';
|
|
|
|
gulp.task('clean', () => {
|
|
return del(['build', 'build-temp']);
|
|
});
|