Skip to content
This repository was archived by the owner on Dec 4, 2023. It is now read-only.

Commit 4aeaf5b

Browse files
committed
drop support for ie9 and ie10; closes mochajs#3148
drop sublime gitignore remove sublime project
1 parent 689d60f commit 4aeaf5b

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

Makefile

-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ mocha.js: $(SRC) browser-entry.js
2121
@printf "==> [Browser :: build]\n"
2222
mkdir -p ${@D}
2323
$(BROWSERIFY) ./browser-entry \
24-
--require buffer/:buffer \
2524
--plugin ./scripts/dedefine \
2625
--ignore 'fs' \
2726
--ignore 'glob' \

karma.conf.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ const browserPlatformPairs = {
99
'chrome@latest': 'Windows 8',
1010
'MicrosoftEdge@latest': 'Windows 10',
1111
'internet [email protected]': 'Windows 8.1',
12-
'internet [email protected]': 'Windows 8',
13-
'internet [email protected]': 'Windows 7',
1412
'firefox@latest': 'Windows 10',
1513
'safari@latest': 'OS X 10.12'
1614
};
@@ -39,7 +37,7 @@ module.exports = config => {
3937
.ignore('fs')
4038
.ignore('path')
4139
.ignore('supports-color')
42-
.require(path.join(__dirname, 'node_modules', 'buffer'), {expose: 'buffer'})
40+
// .require(path.join(__dirname, 'node_modules', 'buffer'), {expose: 'buffer'})
4341
.on('bundled', (err, content) => {
4442
if (!err && bundleDirpath) {
4543
// write bundle to directory for debugging

package.json

+1-3
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,6 @@
325325
"assert": "^1.4.1",
326326
"assetgraph-builder": "^5.6.4",
327327
"browserify": "^14.4.0",
328-
"buffer": "^4.9.1",
329328
"coffee-script": "^1.10.0",
330329
"coveralls": "^3.0.0",
331330
"cross-spawn": "^5.1.0",
@@ -368,8 +367,7 @@
368367
"fs": false,
369368
"glob": false,
370369
"path": false,
371-
"supports-color": false,
372-
"buffer": "buffer"
370+
"supports-color": false
373371
},
374372
"homepage": "https://mochajs.org",
375373
"logo": "https://cldup.com/S9uQ-cOLYz.svg"

0 commit comments

Comments
 (0)