2020-11-27 16:01:54 -05:00
|
|
|
import { concatVendors } from './concat.js';
|
2021-09-16 14:22:20 -04:00
|
|
|
import { compileScripts } from './scripts.js';
|
2020-11-27 16:01:54 -05:00
|
|
|
import { compileStyles } from './styles.js' ;
|
2021-09-16 14:22:20 -04:00
|
|
|
import { compileSVGs } from './svgs.js' ;
|
2020-11-27 16:01:54 -05:00
|
|
|
|
|
|
|
|
concatVendors();
|
2021-09-16 14:22:20 -04:00
|
|
|
compileScripts();
|
2020-11-27 16:01:54 -05:00
|
|
|
compileStyles();
|
2021-09-16 14:22:20 -04:00
|
|
|
compileSVGs();
|