Skip to content

Commit

Permalink
fix(module): simplify require modules
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardogobbosouza committed Feb 5, 2019
1 parent c4858ef commit 6ee58ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/module.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { resolve } from 'path'
import { existsSync } from 'fs'
const { resolve } = require('path')
const { existsSync } = require('fs')

module.exports = function (moduleOptions) {
const defaultOptions = {
Expand Down

0 comments on commit 6ee58ee

Please sign in to comment.