Skip to content

Commit a12cf16

Browse files
authored
fix: Print explicit error if use with babel 6 is attempted (#207)
1 parent d3f6ded commit a12cf16

File tree

6 files changed

+127
-852
lines changed

6 files changed

+127
-852
lines changed

.babelrc

Lines changed: 0 additions & 8 deletions
This file was deleted.

babel.config.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
'use strict'
2+
3+
module.exports = {
4+
plugins: [
5+
'@babel/plugin-transform-modules-commonjs'
6+
],
7+
env: {
8+
test: {
9+
plugins: ['./lib']
10+
}
11+
}
12+
}

0 commit comments

Comments
 (0)