-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Move library to ES module * Modernize library * Collect coverage * Bump grunt version * Remove node-jsdom * Add new key * Run saucelab * Switch coverage folder * Include async * Temp comment out ie8 * Enable full test * Update AugmentedEvent.js * Update Gruntfile.js * Fix async file path * Use chrome to debug * Enable modern browser * Polyfill old browser * Push new file * Update browser list * Other platform doesnt really run * Test IE 11 * Replace arrow function * Support IE * Replace arrow function * debug IE 11 * Compile spec file * Make IE 11 works * Publish es module * prettier * Add Node 10
- Loading branch information
1 parent
e92253f
commit 78c72c9
Showing
28 changed files
with
7,762 additions
and
1,347 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
module.exports = { | ||
extends: ['eslint-config-airbnb-base', 'eslint-config-airbnb-base/rules/strict'].map( | ||
require.resolve | ||
), | ||
rules: { | ||
'comma-dangle': 0, | ||
'no-underscore-dangle': 0, | ||
'no-param-reassign': 0, | ||
'no-plusplus': 0, | ||
'no-func-assign': 0, | ||
'no-use-before-define': 0, | ||
'func-names': 0 | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
sudo: false | ||
language: node_js | ||
node_js: | ||
- "0.12" | ||
- "6" | ||
- "8" | ||
- "10" | ||
after_success: | ||
- "npm run func" | ||
- "cat artifacts/lcov.info | ./node_modules/coveralls/bin/coveralls.js" | ||
- "cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js" |
Oops, something went wrong.