mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
13 lines
262 B
TypeScript
13 lines
262 B
TypeScript
import { task } from 'gulp';
|
|
import { writePolyfills } from '../util';
|
|
import { join } from 'path';
|
|
|
|
|
|
task('src.polyfill', (done: Function) => {
|
|
writePolyfills(join('scripts', 'polyfills')).then(() => {
|
|
done();
|
|
}).catch(err => {
|
|
done(err);
|
|
});
|
|
});
|