Skip to content

Commit 83ff3d4

Browse files
authored
1 parent 1482af8 commit 83ff3d4

File tree

744 files changed

+8860
-29
lines changed

Some content is hidden

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

744 files changed

+8860
-29
lines changed

.github/workflows/build_reusable.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ jobs:
227227

228228
- name: Install node-file-trace test dependencies
229229
if: ${{ inputs.needsNextest == 'yes' }}
230-
working-directory: turbopack/crates/turbopack/tests/node-file-trace
230+
working-directory: turbopack/crates/turbopack-tracing/tests/node-file-trace
231231
run: pnpm install -r --side-effects-cache false
232232

233233
- run: ANALYZE=1 pnpm build

.prettierignore

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,8 @@ test/e2e/async-modules/amp-validator-wasm.js
7171
/turbopack/crates/turbopack-tests/tests/snapshot/source_maps/*
7272
/turbopack/crates/turbopack-tests/tests/**/output*
7373
/turbopack/crates/turbopack-tests/tests/**/static
74+
/turbopack/crates/turbopack-tracing/tests/node-file-trace/test/unit/syntax-err/input.js
75+
/turbopack/crates/turbopack-tracing/tests/node-file-trace/test/unit/tsx/lib.tsx
7476

7577
/apps/docs/.source/*
7678

@@ -84,7 +86,6 @@ test/integration/edge-runtime-configurable-guards/node_modules/lib
8486
test/production/app-dir/symbolic-file-links/src/i18n.ts
8587
test/production/app-dir/symbolic-file-links/src/app/layout.tsx
8688
test/production/app-dir/symbolic-file-links/src/app/page.tsx
87-
turbopack/crates/turbopack/tests/node-file-trace/integration/pnpm/node_modules/foo
88-
turbopack/crates/turbopack/tests/node-file-trace/integration/pnpm/node_modules/.pnpm/[email protected]/node_modules/lodash-pnpm-test
89-
turbopack/crates/turbopack/tests/node-file-trace/integration/symlink-to-file/linked.js
89+
turbopack/crates/turbopack-tracing/tests/node-file-trace/integration/pnpm/node_modules/*
90+
turbopack/crates/turbopack-tracing/tests/node-file-trace/integration/symlink-to-file/linked.js
9091
turbopack/crates/turbopack-tests/tests/snapshot/swc_transforms/mono_transforms/input/node_modules/component

Cargo.lock

Lines changed: 23 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
bench.json
2+
.pnpm
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
[package]
2+
name = "turbopack-tracing"
3+
version = "0.1.0"
4+
description = "TBD"
5+
license = "MIT"
6+
edition = "2024"
7+
autobenches = false
8+
9+
[lib]
10+
bench = false
11+
12+
[features]
13+
test_persistent_cache = []
14+
bench_against_node_nft = []
15+
16+
[lints]
17+
workspace = true
18+
19+
[dependencies]
20+
turbopack = { workspace = true }
21+
22+
[dev-dependencies]
23+
anyhow = { workspace = true }
24+
regex = { workspace = true }
25+
serde = { workspace = true }
26+
serde_json = { workspace = true }
27+
28+
turbo-rcstr = { workspace = true }
29+
turbo-tasks = { workspace = true }
30+
turbo-tasks-fs = { workspace = true }
31+
turbo-tasks-malloc = { workspace = true, default-features = false }
32+
turbo-tasks-backend = { workspace = true }
33+
turbopack-core = { workspace = true }
34+
turbopack-resolve = { workspace = true }
35+
36+
criterion = { workspace = true, features = ["async_tokio"] }
37+
difference = "2.0"
38+
rstest = { workspace = true }
39+
rstest_reuse = "0.5.0"
40+
tokio = { workspace = true }
41+
42+
43+
[[bench]]
44+
name = "mod"
45+
harness = false
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#![feature(box_patterns)]
2+
#![feature(trivial_bounds)]
3+
#![feature(min_specialization)]
4+
#![feature(map_try_insert)]
5+
#![feature(hash_set_entry)]
6+
#![recursion_limit = "256"]
7+
#![feature(arbitrary_self_types)]
8+
#![feature(arbitrary_self_types_pointers)]

0 commit comments

Comments
 (0)