mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-03 12:02:53 +00:00
12 lines
322 B
JavaScript
12 lines
322 B
JavaScript
import {process} from '@angular/compiler-cli/ngcc';
|
|
import path from 'path';
|
|
|
|
const legacyViewEngineLibraries = [
|
|
['@awesome-cordova-plugins', 'calendar'],
|
|
['@ionic-native', 'core'],
|
|
];
|
|
|
|
for (const basePath of legacyViewEngineLibraries) {
|
|
process({basePath: path.resolve(path.join('node_modules', ...basePath))});
|
|
}
|