File tree Expand file tree Collapse file tree 4 files changed +12
-12
lines changed Expand file tree Collapse file tree 4 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 38
38
with :
39
39
token : ${{ secrets.NPM_TOKEN }}
40
40
package : ./package.json
41
- tag : ' rc '
41
+ tag : ' latest '
42
42
43
43
44
44
Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ module.exports = {
98
98
if ( ! fs . existsSync ( filePath ) )
99
99
return Promise . resolve ( ) ;
100
100
return new Promise ( resolve => {
101
- const tag = options . tag ;
101
+ const tag = options . tag === 'rc' ? 'latest' : options . tag ;
102
102
fs . readFile ( filePath , function (
103
103
err ,
104
104
data
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @foxone/finance-ui" ,
3
- "version" : " 0.1.0-rc.0 " ,
3
+ "version" : " 0.1.0-rc.1 " ,
4
4
"description" : " The Financial UI Component Library Based on @foxone/uikit and vuetify" ,
5
5
"main" : " lib/index.js" ,
6
6
"module" : " es/index.js" ,
Original file line number Diff line number Diff line change @@ -206,15 +206,15 @@ export default defineComponent({
206
206
selectable = { this . selectable }
207
207
border = { this . border }
208
208
loading = { this . loading }
209
- vOn = { {
210
- ... this . $listeners ,
211
- input : ( val , e ) => {
212
- if ( ! this . isInRange ( + val ) ) this . $emit ( 'error:limit' ) ;
213
- this . _value_input = val ;
214
- this . $emit ( 'input' , val ) ;
215
- if ( ! this . value ) this . $nextTick ( ( ) => this . $forceUpdate ( ) ) ;
216
- this . setSliderValueWithLimit ( + val ) ;
217
- }
209
+ vOn : input = { ( val , e ) => {
210
+ if ( ! this . isInRange ( + val ) ) this . $emit ( 'error:limit' ) ;
211
+ this . _value_input = val ;
212
+ this . $emit ( 'input' , val ) ;
213
+ if ( ! this . value ) this . $nextTick ( ( ) => this . $forceUpdate ( ) ) ;
214
+ this . setSliderValueWithLimit ( + val ) ;
215
+ } }
216
+ listeners = { {
217
+ ... this . $listeners
218
218
} }
219
219
scopedSlots = { scopedSlots }
220
220
/>
You can’t perform that action at this time.
0 commit comments