Skip to content

Commit

Permalink
Revert "drop support for ie9 and ie10; closes #3148"
Browse files Browse the repository at this point in the history
This reverts commit 3f314b6.
  • Loading branch information
Bamieh committed Jan 3, 2018
1 parent ab5002e commit 53eacb3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions Makefile
Expand Up @@ -21,6 +21,7 @@ mocha.js: $(SRC) browser-entry.js
@printf "==> [Browser :: build]\n"
mkdir -p ${@D}
$(BROWSERIFY) ./browser-entry \
--require buffer/:buffer \
--plugin ./scripts/dedefine \
--ignore 'fs' \
--ignore 'glob' \
Expand Down
4 changes: 3 additions & 1 deletion karma.conf.js
Expand Up @@ -9,6 +9,8 @@ const browserPlatformPairs = {
'chrome@latest': 'Windows 8',
'MicrosoftEdge@latest': 'Windows 10',
'internet explorer@11.0': 'Windows 8.1',
'internet explorer@10.0': 'Windows 8',
'internet explorer@9.0': 'Windows 7',
'firefox@latest': 'Windows 10',
'safari@latest': 'OS X 10.12'
};
Expand Down Expand Up @@ -37,7 +39,7 @@ module.exports = config => {
.ignore('fs')
.ignore('path')
.ignore('supports-color')
// .require(path.join(__dirname, 'node_modules', 'buffer'), {expose: 'buffer'})
.require(path.join(__dirname, 'node_modules', 'buffer'), {expose: 'buffer'})
.on('bundled', (err, content) => {
if (!err && bundleDirpath) {
// write bundle to directory for debugging
Expand Down
4 changes: 3 additions & 1 deletion package.json
Expand Up @@ -325,6 +325,7 @@
"assert": "^1.4.1",
"assetgraph-builder": "^5.6.4",
"browserify": "^14.4.0",
"buffer": "^4.9.1",
"coffee-script": "^1.10.0",
"coveralls": "^3.0.0",
"cross-spawn": "^5.1.0",
Expand Down Expand Up @@ -367,7 +368,8 @@
"fs": false,
"glob": false,
"path": false,
"supports-color": false
"supports-color": false,
"buffer": "buffer"
},
"homepage": "https://mochajs.org",
"logo": "https://cldup.com/S9uQ-cOLYz.svg"
Expand Down

0 comments on commit 53eacb3

Please sign in to comment.