mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-15 09:34:19 +08:00

* init ivy support * chore(): angular prerelease * chore: update * updates * angular 8 deps * chore(angular): update sync script * updates * chore(): remove console log * chore(): updates * chore(): update release script * fix(): remove comments * fix(): remove test version * fix(): failing angular test * fix(): failing angular tests * fix(): update ci steps * fix(): fix sync script * chore(): refactor angular proxies * chore(): updates * chore(): updates * chore(): lint * chore(): updates * chore(ssr): check for window * chore(): fix virtual scroll angular tests * chore(): lint * chore(): add server to link * chore(scripts): update release script * chore(): bump version check * style(scripts): spacing
23 lines
463 B
JavaScript
23 lines
463 B
JavaScript
import resolve from 'rollup-plugin-node-resolve';
|
|
|
|
export default {
|
|
input: 'build/es2015/core.js',
|
|
output: [
|
|
{
|
|
file: 'dist/fesm2015.js',
|
|
format: 'es'
|
|
}
|
|
],
|
|
external: (id) => {
|
|
// anything else is external
|
|
// Windows: C:\xxxxxx\xxx
|
|
const colonPosition = 1;
|
|
return !(id.startsWith('.') || id.startsWith('/') || id.charAt(colonPosition) === ':');
|
|
},
|
|
plugins: [
|
|
resolve({
|
|
mainFields: ['module']
|
|
})
|
|
]
|
|
};
|