-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
add CompileTimeInfo struct for passing compile time info #3685
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
|
This comment was marked as outdated.
This comment was marked as outdated.
sokra
force-pushed
the
sokra/compile-time-value-refactor
branch
from
February 8, 2023 01:22
79d47a1
to
2275265
Compare
sokra
force-pushed
the
sokra/compile-time-value-refactor
branch
from
February 8, 2023 01:24
2275265
to
da87095
Compare
sokra
force-pushed
the
sokra/compile-time-value-refactor
branch
from
February 8, 2023 07:40
da87095
to
3bf0ce6
Compare
Benchmark for 3937b6bClick to view benchmark
|
sokra
force-pushed
the
sokra/compile-time-value-refactor
branch
from
February 10, 2023 07:07
3bf0ce6
to
e05ffba
Compare
Benchmark for 81c8257Click to view benchmark
|
sokra
force-pushed
the
sokra/compile-time-value-refactor
branch
from
February 10, 2023 16:25
e05ffba
to
5173106
Compare
Benchmark for ffe5d54
Click to view full benchmark
|
sokra
force-pushed
the
sokra/compile-time-value-refactor
branch
from
February 12, 2023 17:04
5173106
to
8de732d
Compare
Benchmark for 6ee8356
Click to view full benchmark
|
jridgewell
approved these changes
Feb 15, 2023
sokra
added
the
pr: automerge
Kodiak will merge these automatically after checks pass
label
Feb 15, 2023
Benchmark for 2f5b685
Click to view full benchmark
|
timneutkens
pushed a commit
to vercel/next.js
that referenced
this pull request
Feb 21, 2023
…jjsweb.site> Co-authored-by: Tobias Koppers <tobias.koppers@googlemail.com> # New Features - vercel/turborepo#3771 - vercel/turborepo#3690 # Performance - vercel/turborepo#3768 # Fixes - vercel/turborepo#3795 - vercel/turborepo#3746 - vercel/turborepo#3832 - vercel/turborepo#3827 - vercel/turborepo#3847 # Other - vercel/turborepo#3803 - vercel/turborepo#3685 - vercel/turborepo#3848 --------- Co-authored-by: JJ Kasper <jj@jjsweb.site> Co-authored-by: Tobias Koppers <tobias.koppers@googlemail.com>
jridgewell
pushed a commit
to vercel/next.js
that referenced
this pull request
Mar 10, 2023
…orepo#3685) extracted from vercel/turborepo#3670 Refactoring to allow to pass more compile time info next to the environment to modules. e. g. we want to pass `process.env.NODE_ENV = "development"` in future
sokra
added a commit
to vercel/next.js
that referenced
this pull request
Mar 13, 2023
…orepo#3685) extracted from vercel/turborepo#3670 Refactoring to allow to pass more compile time info next to the environment to modules. e. g. we want to pass `process.env.NODE_ENV = "development"` in future
ForsakenHarmony
pushed a commit
to vercel/next.js
that referenced
this pull request
Jul 25, 2024
…orepo#3685) extracted from vercel/turborepo#3670 Refactoring to allow to pass more compile time info next to the environment to modules. e. g. we want to pass `process.env.NODE_ENV = "development"` in future
ForsakenHarmony
pushed a commit
to vercel/next.js
that referenced
this pull request
Jul 25, 2024
…o#3693) extracted from vercel/turborepo#3670 depends on vercel/turborepo#3685 adds the equal operators to the evaluator
ForsakenHarmony
pushed a commit
to vercel/next.js
that referenced
this pull request
Jul 29, 2024
…orepo#3685) extracted from vercel/turborepo#3670 Refactoring to allow to pass more compile time info next to the environment to modules. e. g. we want to pass `process.env.NODE_ENV = "development"` in future
ForsakenHarmony
pushed a commit
to vercel/next.js
that referenced
this pull request
Jul 29, 2024
…o#3693) extracted from vercel/turborepo#3670 depends on vercel/turborepo#3685 adds the equal operators to the evaluator
ForsakenHarmony
pushed a commit
to vercel/next.js
that referenced
this pull request
Aug 1, 2024
…orepo#3685) extracted from vercel/turborepo#3670 Refactoring to allow to pass more compile time info next to the environment to modules. e. g. we want to pass `process.env.NODE_ENV = "development"` in future
ForsakenHarmony
pushed a commit
to vercel/next.js
that referenced
this pull request
Aug 1, 2024
…o#3693) extracted from vercel/turborepo#3670 depends on vercel/turborepo#3685 adds the equal operators to the evaluator
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
extracted from #3670
Refactoring to allow to pass more compile time info next to the environment to modules.
e. g. we want to pass
process.env.NODE_ENV = "development"
in future