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
24 lines
1.1 KiB
JavaScript
24 lines
1.1 KiB
JavaScript
var Bundler = require('scss-bundle').Bundler;
|
|
var writeFileSync = require('fs-extra').writeFileSync;
|
|
var mkdirpSync = require('fs-extra').mkdirpSync;
|
|
|
|
new Bundler().Bundle('./lib/core/styles/_index.scss', '**/*.scss').then(result => {
|
|
writeFileSync('./lib/dist/core/_theming.scss', result.bundledContent);
|
|
});
|
|
|
|
new Bundler().Bundle('./lib/insights/styles/_index.scss', '**/*.scss').then(result => {
|
|
writeFileSync('./lib/dist/insights/_theming.scss', result.bundledContent);
|
|
});
|
|
|
|
new Bundler().Bundle('./lib/process-services/src/lib/styles/_index.scss', '**/*.scss').then(result => {
|
|
writeFileSync('./lib/dist/process-services/_theming.scss', result.bundledContent);
|
|
});
|
|
|
|
new Bundler().Bundle('./lib/content-services/styles/_index.scss', '**/*.scss').then(result => {
|
|
writeFileSync('./lib/dist/content-services/_theming.scss', result.bundledContent);
|
|
});
|
|
|
|
new Bundler().Bundle('./lib/process-services-cloud/src/lib/styles/_index.scss', '**/*.scss').then(result => {
|
|
writeFileSync('./lib/dist/process-services-cloud/_theming.scss', result.bundledContent);
|
|
});
|