diff options
Diffstat (limited to 'lib/compilers/fake-for-test.js')
-rw-r--r-- | lib/compilers/fake-for-test.js | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/compilers/fake-for-test.js b/lib/compilers/fake-for-test.js index e2b1c49ae..a3f7f45a7 100644 --- a/lib/compilers/fake-for-test.js +++ b/lib/compilers/fake-for-test.js @@ -22,9 +22,9 @@ // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE // POSSIBILITY OF SUCH DAMAGE. -const _ = require('underscore'); +import _ from 'underscore'; -class FakeCompiler { +export class FakeCompiler { static get key() { return 'fake-for-test'; } constructor(info) { @@ -63,6 +63,3 @@ class FakeCompiler { return null; } } - - -module.exports = FakeCompiler; |