Skip to content

Commit 7da8ca0

Browse files
authored
fix(deps): remove babel-core and babel call in wallaby. (#3044)
This change was originally added by @dignifiedquire, but mixed with other changes.
1 parent c88ebc6 commit 7da8ca0

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

package.json

-1
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,6 @@
384384
},
385385
"devDependencies": {
386386
"LiveScript": "^1.3.0",
387-
"babel-core": "^6.26.0",
388387
"browserify": "^14.5.0",
389388
"chai": "^4.1.2",
390389
"chai-as-promised": "^7.1.1",

wallaby.js

-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
const babel = require('babel-core')
21

32
module.exports = function (wallaby) {
43
return {
@@ -32,12 +31,6 @@ module.exports = function (wallaby) {
3231
'test/unit/**/*.spec.js'
3332
],
3433

35-
compilers: {
36-
'**/*.js': wallaby.compilers.babel({
37-
babel: babel
38-
})
39-
},
40-
4134
bootstrap: function (w) {
4235
var path = require('path')
4336
var mocha = w.testFramework

0 commit comments

Comments
 (0)