Skip to content

Commit 2f11690

Browse files
Merge pull request #714 from denoland/main
Create a new pull request by comparing changes across two branches
2 parents 72eb428 + e935523 commit 2f11690

File tree

3,870 files changed

+174463
-178689
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,870 files changed

+174463
-178689
lines changed

.cargo/config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[target.x86_64-pc-windows-msvc]
2-
rustflags = ["-C", "target-feature=+crt-static"]
2+
rustflags = ["-C", "target-feature=+crt-static", "-C", "symbol-mangling-version=v0"]
33

44
[target.'cfg(all(windows, debug_assertions))']
55
rustflags = [

.dprint.json

Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,14 @@
1212
"quotes": "preferSingle"
1313
},
1414
"exec": {
15+
"cwd": "${configDir}",
1516
"commands": [{
1617
"command": "rustfmt --config imports_granularity=item --config group_imports=StdExternalCrate",
17-
"exts": ["rs"]
18+
"exts": ["rs"],
19+
"cacheKeyFiles": [
20+
"rust-toolchain.toml",
21+
".rustfmt.toml"
22+
]
1823
}]
1924
},
2025
"excludes": [
@@ -33,23 +38,25 @@
3338
"cli/tsc/dts/typescript.d.ts",
3439
"cli/tools/doc/prism.css",
3540
"cli/tools/doc/prism.js",
41+
"ext/node/polyfills/deps",
3642
"ext/websocket/autobahn/reports",
3743
"gh-pages",
44+
"libs/config/testdata",
3845
"target",
3946
"tests/ffi/tests/test.js",
4047
"tests/node_compat/runner/suite",
4148
"tests/node_compat/runner/TODO.md",
4249
"tests/node_compat/test",
4350
"tests/registry/",
4451
"tests/specs/bench/default_ts",
52+
"tests/specs/compile/bytes_and_text_imports",
4553
"tests/specs/fmt",
4654
"tests/specs/lint/bom",
4755
"tests/specs/lint/default_ts",
4856
"tests/specs/lint/syntax_error_reporting",
4957
"tests/specs/publish/no_check_surfaces_syntax_error",
5058
"tests/specs/run/default_ts",
5159
"tests/specs/test/default_ts",
52-
"tests/testdata/byte_order_mark.ts",
5360
"tests/testdata/encoding",
5461
"tests/testdata/file_extensions/ts_with_js_extension.js",
5562
"tests/testdata/fmt/",
@@ -60,6 +67,7 @@
6067
"tests/testdata/lint/glob/",
6168
"tests/testdata/malformed_config/",
6269
"tests/testdata/run/byte_order_mark.ts",
70+
"tests/testdata/run/invalid_utf8.ts",
6371
"tests/testdata/run/error_syntax_empty_trailing_line.mjs",
6472
"tests/testdata/run/inline_js_source_map*",
6573
"tests/testdata/test/markdown_windows.md",
@@ -68,17 +76,18 @@
6876
"tests/wpt/runner/manifest.json",
6977
"tests/wpt/suite",
7078
"third_party",
79+
"tests/specs/run/bytes_and_text_imports",
7180
"tests/specs/run/shebang_with_json_imports_tsc",
7281
"tests/specs/run/shebang_with_json_imports_swc",
7382
"tests/specs/run/ext_flag_takes_precedence_over_extension",
7483
"tests/specs/run/error_syntax_empty_trailing_line/error_syntax_empty_trailing_line.mjs"
7584
],
7685
"plugins": [
77-
"https://plugins.dprint.dev/typescript-0.94.0.wasm",
78-
"https://plugins.dprint.dev/json-0.20.0.wasm",
79-
"https://plugins.dprint.dev/markdown-0.18.0.wasm",
86+
"https://plugins.dprint.dev/typescript-0.95.11.wasm",
87+
"https://plugins.dprint.dev/json-0.21.0.wasm",
88+
"https://plugins.dprint.dev/markdown-0.20.0.wasm",
8089
"https://plugins.dprint.dev/toml-0.7.0.wasm",
81-
"https://plugins.dprint.dev/exec-0.5.1.json@492414e39dea4dccc07b4af796d2f4efdb89e84bae2bd4e1e924c0cc050855bf",
82-
"https://plugins.dprint.dev/g-plane/pretty_yaml-v0.5.0.wasm"
90+
"https://plugins.dprint.dev/exec-0.6.0.json@a054130d458f124f9b5c91484833828950723a5af3f8ff2bd1523bd47b83b364",
91+
"https://plugins.dprint.dev/g-plane/pretty_yaml-v0.5.1.wasm"
8392
]
8493
}

.github/CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ To use a development version of the LSP in VSCode:
6565
In addition to the above make sure that:
6666

6767
> To use the commands below, you need to first install the necessary tools on
68-
> your system as described [here](building_from_source).
68+
> your system as described [here](#building-from-source).
6969
7070
1. `cargo test` passes - this will run full test suite for `deno` including unit
7171
tests, integration tests and Web Platform Tests
@@ -80,7 +80,7 @@ In addition to the above make sure that:
8080

8181
Below are instructions on how to build Deno from source. If you just want to use
8282
Deno you can download a prebuilt executable (more information in the
83-
[`Getting Started`](/runtime/getting_started/installation/) chapter).
83+
[`Getting Started`](https://docs.deno.com/runtime) chapter).
8484

8585
### Cloning the Repository
8686

0 commit comments

Comments
 (0)