mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
fix: precompile preserve SVG camelCase attributes (#25945)
See https://github.com/denoland/deno_ast/pull/278 Fixes https://github.com/denoland/deno/issues/25810
This commit is contained in:
parent
05ca6994ca
commit
c5c1869992
3 changed files with 7 additions and 13 deletions
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -1273,9 +1273,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "deno_ast"
|
||||
version = "0.42.0"
|
||||
version = "0.42.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "3b08d11d9e4086b00d3428650e31153cf5896586411763cb88a6423ce5b18791"
|
||||
checksum = "89ea2fd038c9c7e3e87e624fd708303cd33f39c33707f6c48fa9a65d65fefc47"
|
||||
dependencies = [
|
||||
"base64 0.21.7",
|
||||
"deno_media_type",
|
||||
|
|
|
@ -45,7 +45,7 @@ license = "MIT"
|
|||
repository = "https://github.com/denoland/deno"
|
||||
|
||||
[workspace.dependencies]
|
||||
deno_ast = { version = "=0.42.0", features = ["transpiling"] }
|
||||
deno_ast = { version = "=0.42.1", features = ["transpiling"] }
|
||||
deno_core = { version = "0.311.0" }
|
||||
|
||||
deno_bench_util = { version = "0.162.0", path = "./bench_util" }
|
||||
|
|
|
@ -1,10 +1,4 @@
|
|||
error: Uncaught (in promise) SyntaxError: Unexpected token 'export'
|
||||
at Object.evalContext (ext:core/01_core.js:[WILDCARD])
|
||||
at wrapSafe (node:module:[WILDCARD])
|
||||
at Module._compile (node:module:[WILDCARD])
|
||||
at Object.Module._extensions..js (node:module:[WILDCARD])
|
||||
at Module.load (node:module:[WILDCARD])
|
||||
at Function.Module._load (node:module:[WILDCARD])
|
||||
at Module.require (node:module:[WILDCARD])
|
||||
at require (node:module:[WILDCARD])
|
||||
at file:///[WILDCARD]/@denotest/type-commonjs/1.0.0/index.js:3:13
|
||||
error: 'import', and 'export' cannot be used outside of module code at file://[WILDCARD]/@denotest/type-commonjs/1.0.0/index.js:1:1
|
||||
|
||||
export {};
|
||||
~~~~~~
|
||||
|
|
Loading…
Reference in a new issue