Skip to content

Commit

Permalink
import version directly (prevents the entire package.json from being …
Browse files Browse the repository at this point in the history
…included in the module)
  • Loading branch information
mariusandra committed Nov 27, 2020
1 parent 80d256a commit 25e5ec6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/config.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import pkg from '../package.json'
import { version } from '../package.json'

var Config = {
DEBUG: false,
LIB_VERSION: pkg.version,
LIB_VERSION: version,
}

export default Config

0 comments on commit 25e5ec6

Please sign in to comment.