mirror of
https://github.com/home-assistant/frontend.git
synced 2025-06-17 23:56:34 +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
10 lines
162 B
JavaScript
10 lines
162 B
JavaScript
import gulp from 'gulp';
|
|
import runSequence from 'run-sequence';
|
|
|
|
gulp.task('default', () => {
|
|
return runSequence.use(gulp)(
|
|
'clean',
|
|
'build',
|
|
);
|
|
});
|