Skip to content

Commit

Permalink
Catch fix (#221)
Browse files Browse the repository at this point in the history
* [update] adds bundle configs

* [update] adds acceptance test runner

* [update] removes unneeded if statements and unused code

* [update] no gulp

* [update] switches from airbnb to standard lint config

* [update] update build for 3.0.0

* [docs] readme 3.0.0 messaging

* [upadte] update travis

* [update] reverts forEach => for loop

* use babel-preset-env (#216)

* use babel-preset-env

also remove bower and cleanup .npmignore

* support IE9 and newer

* add default browserslist config

* [bug] remove merge conflict marks in readme
  • Loading branch information
yowainwright authored Feb 2, 2018
1 parent 80cf87a commit 5f7bbc5
Show file tree
Hide file tree
Showing 10 changed files with 275 additions and 30 deletions.
13 changes: 12 additions & 1 deletion .babelrc
Original file line number Diff line number Diff line change
@@ -1 +1,12 @@
{ "presets": [ "es2015" ] }
{
"presets": [
["env", {
"targets": {
"browsers": [
"defaults",
"ie >= 9"
]
}
}]
]
}
2 changes: 2 additions & 0 deletions .browserslistrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
"defaults",
ie >= 9
3 changes: 1 addition & 2 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
gulpfile.js
rollup.config.js

2 changes: 1 addition & 1 deletion configs/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {

const babelSetup = {
babelrc: false,
presets: [['es2015', { modules: false }]],
presets: [['env', { modules: false }]],
exclude: 'node_modules/**'
}

Expand Down
4 changes: 2 additions & 2 deletions dist/jquery.stickybits.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/stickybits.es.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 5f7bbc5

Please sign in to comment.