Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Turbopack build: Fix benchmark running with webpack #70533

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions bench/heavy-npm-deps/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"lodash-es": "^4.17.21",
"lucide-react": "^0.383.0",
"mermaid": "^10.9.1",
"next": "workspace:*"
},
"devDependencies": {}
"next": "workspace:*",
"tailwindcss": "3.2.7"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ const config = {
},
}

export default config
module.exports = config
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import type { Config } from 'tailwindcss'

const config: Config = {
const config = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
Expand All @@ -16,4 +14,4 @@ const config: Config = {
},
plugins: [],
}
export default config
module.exports = config
8 changes: 4 additions & 4 deletions packages/next/src/compiled/babel-packages/packages-bundle.js

Large diffs are not rendered by default.

55 changes: 24 additions & 31 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion scripts/devlow-bench.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ const nextBuildWorkflow =
'.next',
'cache',
'webpack',
'client-development'
'client-production'
)
await Promise.race([
waitForFile(join(cacheLocation, 'index.pack')),
Expand Down
Loading