-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
feat(nextjs): Standalone projects now default to src #21010
feat(nextjs): Standalone projects now default to src #21010
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
☁️ Nx Cloud ReportCI is running/has finished running commands for commit 1f0ee64. As they complete they will appear below. Click to see the status, the terminal output, and the build insights. 📂 See all runs for this CI Pipeline Execution ✅ Successfully ran 6 targets
Sent with 💌 from NxCloud. |
9467e69
to
065d326
Compare
065d326
to
a7c90ae
Compare
a7c90ae
to
58dd8c5
Compare
58dd8c5
to
51cb8b4
Compare
51cb8b4
to
6b79866
Compare
6b79866
to
ee3d83f
Compare
ee3d83f
to
b3c3e04
Compare
b3c3e04
to
5aed0ea
Compare
5aed0ea
to
b296522
Compare
b296522
to
7740934
Compare
7740934
to
c685a74
Compare
c685a74
to
1f0ee64
Compare
@@ -41,7 +42,9 @@ describe('@nx/workspace:convert-to-monorepo', () => { | |||
expect(() => runCLI(`test ${reactApp}`)).not.toThrow(); | |||
expect(() => runCLI(`lint ${reactApp}`)).not.toThrow(); | |||
expect(() => runCLI(`lint e2e`)).not.toThrow(); | |||
expect(() => runCLI(`e2e e2e`)).not.toThrow(); | |||
if (runE2ETests()) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added to reduce the test being flaky
This pull request has already been merged/closed. If you experience issues related to these changes, please open a new issue referencing this pull request. |
Current Behavior
Currently, when you create a standalone next workspace it does not contain a
src/
for the application filesExpected Behavior
Application files are now inside
src/
folder for standalone next projects