File tree Expand file tree Collapse file tree 6 files changed +203
-51
lines changed Expand file tree Collapse file tree 6 files changed +203
-51
lines changed Original file line number Diff line number Diff line change 116
116
"prettier" : " ^3.3.3" ,
117
117
"rc" : " ^1.2.8" ,
118
118
"rimraf" : " ^6.0.0" ,
119
- "rollup" : " ^3.29 .2" ,
119
+ "rollup" : " ^4.21 .2" ,
120
120
"rollup-plugin-node-builtins" : " ^2.1.2" ,
121
121
"rollup-plugin-node-globals" : " ^1.4.0" ,
122
122
"rollup-plugin-typescript2" : " ^0.36.0" ,
Original file line number Diff line number Diff line change @@ -409,7 +409,7 @@ export function registerLocaleFallbacker(fallbacker: LocaleFallbacker): void {
409
409
}
410
410
411
411
// Additional Meta for Intlify DevTools
412
- let _additionalMeta : MetaInfo | null = /* #__PURE__*/ null
412
+ let _additionalMeta : MetaInfo | null = null
413
413
414
414
/* #__NO_SIDE_EFFECTS__ */
415
415
export const setAdditionalMeta = ( meta : MetaInfo | null ) : void => {
@@ -512,12 +512,12 @@ export function createCoreContext<Message = string>(options: any = {}): any {
512
512
? isPlainObject ( options . datetimeFormats )
513
513
? options . datetimeFormats
514
514
: { [ _locale ] : { } }
515
- : /* #__PURE__*/ { [ _locale ] : { } }
515
+ : { [ _locale ] : { } }
516
516
const numberFormats = ! __LITE__
517
517
? isPlainObject ( options . numberFormats )
518
518
? options . numberFormats
519
519
: { [ _locale ] : { } }
520
- : /* #__PURE__*/ { [ _locale ] : { } }
520
+ : { [ _locale ] : { } }
521
521
const modifiers = assign (
522
522
{ } ,
523
523
options . modifiers || { } ,
Original file line number Diff line number Diff line change 1
- import { isObject , isFunction } from '@intlify/shared'
1
+ import { isFunction , isObject } from '@intlify/shared'
2
2
3
3
/** @VueI 18nGeneral */
4
4
export type Path = string
@@ -43,7 +43,7 @@ const enum PathCharTypes {
43
43
type PathState = StateAction | States . ERROR
44
44
type PathStateMachine = Record < string , PathState >
45
45
46
- const pathStateMachine = /* #__PURE__*/ [ ] as PathStateMachine [ ]
46
+ const pathStateMachine = [ ] as PathStateMachine [ ]
47
47
48
48
pathStateMachine [ States . BEFORE_PATH ] = {
49
49
[ PathCharTypes . WORKSPACE ] : [ States . BEFORE_PATH ] ,
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ declare module 'vue' {
79
79
}
80
80
81
81
// for bridge
82
- const _legacyVueI18n : any = /* #__PURE__*/ null // eslint-disable-line @typescript-eslint/no-explicit-any
82
+ const _legacyVueI18n : any = null // eslint-disable-line @typescript-eslint/no-explicit-any
83
83
84
84
/**
85
85
* I18n Options for `createI18n`
You can’t perform that action at this time.
0 commit comments