This commit is contained in:
lalBi94
2023-03-05 13:23:23 +01:00
commit 7bc56c09b5
14034 changed files with 1834369 additions and 0 deletions

10
node_modules/@riotjs/parser/src/messages.js generated vendored Normal file
View File

@@ -0,0 +1,10 @@
export const rootTagNotFound = 'Root tag not found.'
export const unclosedTemplateLiteral = 'Unclosed ES6 template literal.'
export const unexpectedEndOfFile = 'Unexpected end of file.'
export const unexpectedNamedTag = 'Unexpected tag <%1>'
export const unclosedComment = 'Unclosed comment.'
export const unclosedNamedBlock = 'Unclosed "%1" block.'
export const duplicatedNamedTag = 'Multiple inline "<%1>" tags are not supported.'
export const expectedAndInsteadSaw = 'Expected "</%1>" and instead saw "<%2>".'
export const unexpectedCharInExpression = 'Unexpected character %1.'
export const unclosedExpression = 'Unclosed expression.'