Skip to content

Commit 2f5b723

Browse files
committed
update
1 parent 9643157 commit 2f5b723

File tree

5 files changed

+2346
-2272
lines changed

5 files changed

+2346
-2272
lines changed

assets/yarn.lock

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2+
# yarn lockfile v1
3+
4+

website/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@
146146
"typescript": "^3.7.2",
147147
"typescript-eslint-parser": "^22.0.0",
148148
"uglify-es": "^3.0.28",
149-
"vue-i18n": "^9.0.0-alpha4",
149+
"vue-i18n": "^9.0.0-alpha12",
150150
"vue-template-compiler": "^2.6.9",
151151
"webidl2": "^23.5.1",
152152
"yaml": "^1.7.2",

website/src/parsers/intlify/intlify-message-format.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ const NODE_TYPE_NAMES = [
1212
'List',
1313
'Linked',
1414
'LinkedKey',
15-
'LinkedModifier'
15+
'LinkedModifier',
16+
'Literal',
1617
]
1718

1819

@@ -30,8 +31,8 @@ export default {
3031
},
3132

3233
parse(mod, code, opts) {
33-
const { createCompiler } = mod
34-
return createCompiler().compile(code)
34+
const { createParser } = mod
35+
return createParser().parse(code)
3536
},
3637

3738
getNodeName(node) {

0 commit comments

Comments
 (0)