deno/tools
Luca Casonato 594a99817c
feat(runtime): remove public OTEL trace API (#26854)
This PR removes the public Deno.tracing.Span API.
We are not confident we can ship an API that is
better than the `@opentelemetry/api` API, because
V8 CPED does not support us using `using` to
manage span context. If this changes, we can
revisit this decision. For now, users wanting
custom spans can instrument their code using
the `@opentelemetry/api` API and `@deno/otel`.

This PR also speeds up the OTEL trace generation
by a 30% by using Uint8Array instead of
strings for the trace ID and span ID.
2024-11-18 23:55:22 +00:00
..
napi feat: support node-api in denort (#26389) 2024-10-24 09:13:54 +02:00
release chore: update release doc template (#26406) 2024-10-19 09:12:19 +05:30
build_bench.ts chore: update tools allow-run list (#25756) 2024-09-20 14:32:25 +05:30
build_benchmark_jsons.js chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
copyright_checker.js chore: enable no-console dlint rule (#25113) 2024-08-20 15:14:37 -04:00
core_import_map.json feat(runtime): remove public OTEL trace API (#26854) 2024-11-18 23:55:22 +00:00
cut_a_release.md docs: clarify release instructions (#24124) 2024-06-07 01:15:56 +00:00
deno.json chore: use @std prefix for internal module specifiers (#24543) 2024-07-25 10:26:54 +10:00
deno.lock.json ci: add script to promote to RC release (#25072) 2024-08-16 23:59:10 +02:00
faster-rebuilds.md chore(build): document faster rebuilds with cargo plonk (#21823) 2024-01-06 16:27:04 +05:30
format.js feat(byonm): support deno run npm:<package> when package is not in package.json (#25981) 2024-10-02 21:17:39 +01:00
generate_types_deno.ts chore: add code generation for @types/deno (#25545) 2024-09-23 19:18:52 +00:00
install_prebuilt.js chore: use @std prefix for internal module specifiers (#24543) 2024-07-25 10:26:54 +10:00
jsdoc_checker.js chore: add code generation for @types/deno (#25545) 2024-09-23 19:18:52 +00:00
lint.js feat(cli): support multiple env file argument (#26527) 2024-11-17 22:49:35 +00:00
ops.d.ts feat(ext/node): rewrite crypto keys (#24463) 2024-08-07 08:43:58 +02:00
README.md chore: use granular unstable flags in tools/ (#22138) 2024-01-26 22:35:43 +00:00
update_typescript.md
upload_wptfyi.js chore: enable no-console dlint rule (#25113) 2024-08-20 15:14:37 -04:00
util.js chore: update dlint to v0.68.0 for internal (#26711) 2024-11-04 12:17:11 -05:00
verify_pr_title.js refactor: remove DENO_FUTURE (#25314) 2024-08-30 21:58:24 +00:00
wgpu_sync.js chore: use @std prefix for internal module specifiers (#24543) 2024-07-25 10:26:54 +10:00

Tools

Documentation for various tooling in support of Deno development.

format.js

This script will format the code (currently using dprint, rustfmt). It is a prerequisite to run this before code check in.

To run formatting:

deno run --allow-read --allow-write --allow-run ./tools/format.js

lint.js

This script will lint the code base (currently using dlint, clippy). It is a prerequisite to run this before code check in.

To run linting:

deno run --allow-read --allow-write --allow-run ./tools/lint.js

Tip: You can also use cargo to run the current or pending build of the deno executable

cargo run -- run --allow-read --allow-write --allow-run ./tools/<script>

wgpu_sync.js

wgpu_sync.js streamlines updating deno_webgpu from gfx-rs/wgpu.

It essentially vendors the deno_webgpu tree with a few minor patches applied on top, somewhat similar to git subtree.

  1. Update COMMIT or V_WGPU in ./tools/wgpu_sync.js
  2. Run ./tools/wgpu_sync.js
  3. Double check changes, possibly patch
  4. Commit & send a PR with the updates

copyright_checker.js is used to check copyright headers in the codebase.

To run the copyright checker:

deno run --allow-read --allow-run  ./tools/copyright_checker.js

Then it will check all code files in the repository and report any files that are not properly licensed.