mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* Be able to build conten with ng build content-service * fix tslint * The translate module is necessary * Rollback the build commands * Rollback * Remove wrong imports * Trigger the build
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/content-services/src/lib/styles/_index.scss', '**/*.scss').then(result => {
|
|
writeFileSync('./lib/dist/content-services/_theming.scss', result.bundledContent);
|
|
});
|