mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* Process-services: Making sure you can run ng build process-services ng test process-services * Fix the path of the styles * move the file in the right place
7 lines
297 B
JavaScript
7 lines
297 B
JavaScript
var Bundler = require('scss-bundle').Bundler;
|
|
var writeFileSync = require('fs-extra').writeFileSync;
|
|
|
|
new Bundler().Bundle('./lib/process-services/src/lib/styles/_index.scss', '**/*.scss').then(result => {
|
|
writeFileSync('./lib/dist/process-services/_theming.scss', result.bundledContent);
|
|
});
|