-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Retain ability to deep import from '@redwoodjs/cli/dist/lib/loadEnvFi…
…les' This commit can be reverted in a followup PR, thus introducing a breaking change for the next major version.
- Loading branch information
Showing
2 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// @ts-check | ||
|
||
export { | ||
loadEnvFiles, | ||
loadDefaultEnvFiles, | ||
loadNodeEnvDerivedEnvFile, | ||
loadUserSpecifiedEnvFiles, | ||
} from '@redwoodjs/cli-helpers' | ||
|
||
/** | ||
* Retaining the file here as per https://github.com/redwoodjs/redwood/pull/11885#issuecomment-2575847407 | ||
* | ||
* This ensures there are no breaking changes in case people are deep-importing any of these methods. | ||
* | ||
* This file can finally be removed in the next major version as a documented breaking change. | ||
*/ |