Skip to content

Commit

Permalink
fix: make sure old version of node won't fail
Browse files Browse the repository at this point in the history
close #1300
  • Loading branch information
elevatebart committed Mar 24, 2022
1 parent 8587549 commit d6a423c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vue-inbrowser-compiler-demi/postinstall.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ function getVuePackageVersion() {
try {
const pkg = require('vue')
return pkg.version
} catch {
} catch (error) {
return 'unknown'
}
}
Expand Down

0 comments on commit d6a423c

Please sign in to comment.