chore(polyfill): break DOM polyfills into external file

This commit is contained in:
Adam Bradley
2016-09-19 08:56:25 -05:00
parent 0e8ebe5734
commit 9fca394bdb
4 changed files with 31 additions and 32 deletions

View File

@@ -95,11 +95,6 @@ task('polyfill.modern', (done) => {
});
task('polyfill.copy-readme', (done) => {
const rename = require('gulp-rename');
return src('scripts/npm/polyfills.readme.md')
.pipe(rename({
basename: 'README'
}))
return src('scripts/polyfill/readme.md')
.pipe(dest('dist/ionic-angular/polyfills/'), done);
});