Skip to content

Commit

Permalink
chore(graph): change ports for serving graph configs (#12087)
Browse files Browse the repository at this point in the history
  • Loading branch information
philipjfulcher committed Sep 19, 2022
1 parent 5bd30cc commit 4e5656c
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 9 deletions.
12 changes: 7 additions & 5 deletions graph/client-e2e/project.json
Expand Up @@ -6,21 +6,23 @@
"e2e-base": {
"executor": "@nrwl/cypress:cypress",
"options": {
"tsConfig": "graph/client-e2e/tsconfig.e2e.json",
"baseUrl": "http://localhost:4200"
"tsConfig": "graph/client-e2e/tsconfig.e2e.json"
},
"configurations": {
"dev": {
"cypressConfig": "graph/client-e2e/cypress.json",
"devServerTarget": "graph-client:serve"
"devServerTarget": "graph-client:serve",
"baseUrl": "http://localhost:4201"
},
"watch": {
"cypressConfig": "graph/client-e2e/cypress-watch-mode.json",
"devServerTarget": "graph-client:serve:watch"
"devServerTarget": "graph-client:serve:watch",
"baseUrl": "http://localhost:4204"
},
"release": {
"cypressConfig": "graph/client-e2e/cypress-release.json",
"devServerTarget": "graph-client:serve:release"
"devServerTarget": "graph-client:serve:release",
"baseUrl": "http://localhost:4203"
}
},
"defaultConfiguration": "dev"
Expand Down
12 changes: 8 additions & 4 deletions graph/client/project.json
Expand Up @@ -104,16 +104,20 @@
"executor": "@nrwl/webpack:dev-server",
"configurations": {
"dev": {
"buildTarget": "graph-client:build-base:dev"
"buildTarget": "graph-client:build-base:dev",
"port": 4201
},
"nx-console": {
"buildTarget": "graph-client:build-base:nx-console"
"buildTarget": "graph-client:build-base:nx-console",
"port": 4202
},
"release": {
"buildTarget": "graph-client:build-base:release"
"buildTarget": "graph-client:build-base:release",
"port": 4203
},
"watch": {
"buildTarget": "graph-client:build-base:watch"
"buildTarget": "graph-client:build-base:watch",
"port": 4204
}
},
"defaultConfiguration": "dev"
Expand Down

1 comment on commit 4e5656c

@vercel
Copy link

@vercel vercel bot commented on 4e5656c Sep 19, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

nx-dev – ./

nx-dev-git-master-nrwl.vercel.app
nx-dev-nrwl.vercel.app
nx-five.vercel.app
nx.dev

Please sign in to comment.