File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
const pkg = require ( '../packages/core/package.json' ) ;
2
2
3
- const version = pkg . version || process . env . VERSION ;
3
+ const version = process . env . VERSION || pkg . version ;
4
4
5
5
const date = {
6
6
day : new Date ( ) . getDate ( ) ,
Original file line number Diff line number Diff line change 1
1
const pkg = require ( '../packages/react/package.json' ) ;
2
2
3
- const version = pkg . version || process . env . VERSION ;
3
+ const version = process . env . VERSION || pkg . version ;
4
4
5
5
const date = {
6
6
day : new Date ( ) . getDate ( ) ,
Original file line number Diff line number Diff line change 1
1
const pkg = require ( '../packages/vue/package.json' ) ;
2
2
3
- const version = pkg . version || process . env . VERSION ;
3
+ const version = process . env . VERSION || pkg . version ;
4
4
5
5
const date = {
6
6
day : new Date ( ) . getDate ( ) ,
You can’t perform that action at this time.
0 commit comments