mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
7 lines
281 B
JavaScript
7 lines
281 B
JavaScript
var Bundler = require('scss-bundle').Bundler;
|
|
var writeFileSync = require('fs-extra').writeFileSync;
|
|
|
|
new Bundler().Bundle('./lib/insights/src/lib/styles/_index.scss', '**/*.scss').then(result => {
|
|
writeFileSync('./lib/dist/insights/_theming.scss', result.bundledContent);
|
|
});
|