Skip to content

Commit

Permalink
Fix babelEsmConfig path (#2990)
Browse files Browse the repository at this point in the history
Set the correct path for the ESM Babel config file

Co-authored-by: Chris Trevino <darthtrevino@users.noreply.github.com>
  • Loading branch information
hubgit and darthtrevino committed Feb 9, 2021
1 parent cc032b0 commit d3fd9cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/build/src/tasks/babel.ts
Expand Up @@ -8,7 +8,7 @@ import plumber = require('gulp-plumber')

/* eslint-disable @typescript-eslint/no-var-requires */
const babelCjsConfig = require('../../config/babel.config.cjs')
const babelEsmConfig = require('../../config/babel.config.cjs')
const babelEsmConfig = require('../../config/babel.config')
/* eslint-enable @typescript-eslint/no-var-requires */

const BABEL_GLOBS = ['lib/**/*.js']
Expand Down

0 comments on commit d3fd9cb

Please sign in to comment.