mirror of https://github.com/vuejs/core.git
parent
67bb820904
commit
ea190f24e4
|
@ -48,7 +48,7 @@
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@babel/parser": "catalog:",
|
"@babel/parser": "catalog:",
|
||||||
"@vue/shared": "workspace:*",
|
"@vue/shared": "workspace:*",
|
||||||
"entities": "^4.5.0",
|
"entities": "^5.0.0",
|
||||||
"estree-walker": "catalog:",
|
"estree-walker": "catalog:",
|
||||||
"source-map-js": "catalog:"
|
"source-map-js": "catalog:"
|
||||||
},
|
},
|
||||||
|
|
|
@ -44,7 +44,7 @@ import {
|
||||||
isSimpleIdentifier,
|
isSimpleIdentifier,
|
||||||
isStaticArgOf,
|
isStaticArgOf,
|
||||||
} from './utils'
|
} from './utils'
|
||||||
import { decodeHTML } from 'entities/lib/decode.js'
|
import { decodeHTML } from 'entities/dist/decode.js'
|
||||||
import {
|
import {
|
||||||
type ParserOptions as BabelOptions,
|
type ParserOptions as BabelOptions,
|
||||||
parse,
|
parse,
|
||||||
|
|
|
@ -36,7 +36,7 @@ import {
|
||||||
EntityDecoder,
|
EntityDecoder,
|
||||||
fromCodePoint,
|
fromCodePoint,
|
||||||
htmlDecodeTree,
|
htmlDecodeTree,
|
||||||
} from 'entities/lib/decode.js'
|
} from 'entities/dist/decode.js'
|
||||||
|
|
||||||
export enum ParseMode {
|
export enum ParseMode {
|
||||||
BASE,
|
BASE,
|
||||||
|
|
|
@ -183,8 +183,8 @@ importers:
|
||||||
specifier: workspace:*
|
specifier: workspace:*
|
||||||
version: link:../shared
|
version: link:../shared
|
||||||
entities:
|
entities:
|
||||||
specifier: ^4.5.0
|
specifier: ^5.0.0
|
||||||
version: 4.5.0
|
version: 5.0.0
|
||||||
estree-walker:
|
estree-walker:
|
||||||
specifier: 'catalog:'
|
specifier: 'catalog:'
|
||||||
version: 2.0.2
|
version: 2.0.2
|
||||||
|
@ -1891,6 +1891,10 @@ packages:
|
||||||
resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
|
resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
|
||||||
engines: {node: '>=0.12'}
|
engines: {node: '>=0.12'}
|
||||||
|
|
||||||
|
entities@5.0.0:
|
||||||
|
resolution: {integrity: sha512-BeJFvFRJddxobhvEdm5GqHzRV/X+ACeuw0/BuuxsCh1EUZcAIz8+kYmBp/LrQuloy6K1f3a0M7+IhmZ7QnkISA==}
|
||||||
|
engines: {node: '>=0.12'}
|
||||||
|
|
||||||
env-paths@2.2.1:
|
env-paths@2.2.1:
|
||||||
resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==}
|
resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==}
|
||||||
engines: {node: '>=6'}
|
engines: {node: '>=6'}
|
||||||
|
@ -4982,6 +4986,8 @@ snapshots:
|
||||||
|
|
||||||
entities@4.5.0: {}
|
entities@4.5.0: {}
|
||||||
|
|
||||||
|
entities@5.0.0: {}
|
||||||
|
|
||||||
env-paths@2.2.1: {}
|
env-paths@2.2.1: {}
|
||||||
|
|
||||||
error-ex@1.3.2:
|
error-ex@1.3.2:
|
||||||
|
|
|
@ -253,7 +253,7 @@ function createConfig(format, output, plugins = []) {
|
||||||
'source-map-js',
|
'source-map-js',
|
||||||
'@babel/parser',
|
'@babel/parser',
|
||||||
'estree-walker',
|
'estree-walker',
|
||||||
'entities/lib/decode.js',
|
'entities/dist/decode.js',
|
||||||
]
|
]
|
||||||
|
|
||||||
if (isGlobalBuild || isBrowserESMBuild || isCompatPackage) {
|
if (isGlobalBuild || isBrowserESMBuild || isCompatPackage) {
|
||||||
|
|
Loading…
Reference in New Issue