Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build polyfill for multiple environments
Browse files Browse the repository at this point in the history
Emanuel Tesar committed Sep 2, 2019
1 parent ae35e9e commit 2cfc6d1
Showing 15 changed files with 25 additions and 756 deletions.
1 change: 1 addition & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -7,6 +7,7 @@
"env": {
"browser": true,
"jasmine": true,
"node": true,
"es6": true
},
"plugins": [
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -2,3 +2,4 @@
node_modules/
local.log
browserstack.err
build/
4 changes: 2 additions & 2 deletions Gulpfile.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* eslint-disable require-jsdoc */
/* eslint-disable */
/**
* @license
* Copyright 2017 Google Inc. All Rights Reserved.
@@ -103,7 +103,7 @@ gulp.task('es5.api', function() {
.pipe(gulp.dest('dist/es5'));
});

gulp.task('es5.full', function(done) {
gulp.task('es5.full', function() {
return gulp.src([
'./src/**/*.js',
], {base: './'})
Loading

0 comments on commit 2cfc6d1

Please sign in to comment.