Skip to content

Commit

Permalink
docs(core): fix dev output path so it does not conflict with prod (nr…
Browse files Browse the repository at this point in the history
  • Loading branch information
jaysoo authored Aug 30, 2022
1 parent 9999215 commit 8d85990
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .nxignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
nx-dev/**/jest.config.js
nx-dev/**/jest.config.js
.next
2 changes: 1 addition & 1 deletion nx-dev/nx-dev/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"extends": ["plugin:@nrwl/nx/react", "../../.eslintrc.json"],
"ignorePatterns": ["!**/*"]
"ignorePatterns": ["!**/*", "**/.next"]
}
4 changes: 3 additions & 1 deletion nx-dev/nx-dev/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@
"outputPath": "dist/nx-dev/nx-dev"
},
"configurations": {
"development": {},
"development": {
"outputPath": "nx-dev/nx-dev"
},
"production": {}
}
},
Expand Down

0 comments on commit 8d85990

Please sign in to comment.