mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* fix viewer script export insights and diagram remove requires svg fix new data adapter path dist working with diagrams commented out change use of minimatch fix unused import remove unused component fix test new import moment es6 and throw rxjs fix import analytics test fix imports rxjs new pacakging * fix after rebase * fix test upload services * exclude temporarily button event test * restore commented demo shell files * fix process spy
26 lines
952 B
JavaScript
26 lines
952 B
JavaScript
var Bundler = require('scss-bundle').Bundler;
|
|
var writeFileSync = require('fs-extra').writeFileSync;
|
|
var mkdirpSync = require('fs-extra').mkdirpSync;
|
|
|
|
new Bundler().Bundle('./core/styles/_index.scss', '**/*.scss').then(result => {
|
|
mkdirpSync('core');
|
|
writeFileSync('core/dist/_theming.scss', result.bundledContent);
|
|
});
|
|
|
|
new Bundler().Bundle('./insights/styles/_index.scss', '**/*.scss').then(result => {
|
|
mkdirpSync('insights');
|
|
writeFileSync('insights/dist/_theming.scss', result.bundledContent);
|
|
});
|
|
|
|
|
|
new Bundler().Bundle('./process-services/styles/_index.scss', '**/*.scss').then(result => {
|
|
mkdirpSync('process-services');
|
|
writeFileSync('process-services/dist/_theming.scss', result.bundledContent);
|
|
});
|
|
|
|
new Bundler().Bundle('./content-services/styles/_index.scss', '**/*.scss').then(result => {
|
|
mkdirpSync('content-services');
|
|
writeFileSync('content-services/dist/_theming.scss', result.bundledContent);
|
|
});
|
|
|