Skip to content

Commit

Permalink
fix(compat): update cjs dist file names (#3893)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe committed Jun 7, 2021
1 parent 70cd2d5 commit 434ea30
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/vue-compat/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict'

if (process.env.NODE_ENV === 'production') {
module.exports = require('./dist/compat.cjs.prod.js')
module.exports = require('./dist/vue.cjs.prod.js')
} else {
module.exports = require('./dist/compat.cjs.js')
module.exports = require('./dist/vue.cjs.js')
}

0 comments on commit 434ea30

Please sign in to comment.