Compare commits

...

8 Commits

Author SHA1 Message Date
Miroslav Jonaš 0aafb46f3d Merge branch 'master' into remove-e2e-type 2024-11-04 14:33:46 +01:00
Miroslav Jonaš 155b0aee6c Merge branch 'master' into remove-e2e-type 2024-07-24 13:00:58 +02:00
Miroslav Jonaš 22af5ae92c Merge branch 'master' into remove-e2e-type 2024-07-23 13:24:37 +02:00
Miroslav Jonas 0d736824a5 Merge remote-tracking branch 'upstream/master' into remove-e2e-type 2024-07-23 11:46:12 +02:00
Miroslav Jonaš 03a87c230b Merge branch 'master' into remove-e2e-type 2024-06-28 13:49:03 +02:00
Miroslav Jonas c76defabb8 feat(linter): fix failing test 2024-06-27 14:57:19 +02:00
Miroslav Jonas 862707e616 chore(repo): revert change 2024-06-27 09:25:27 +02:00
Miroslav Jonas a84f88e009 docs(nx-dev): replace type: e2e with type:app 2024-06-26 22:34:30 +02:00
15 changed files with 28 additions and 28 deletions
@@ -321,7 +321,7 @@ As you start modularizing your Angular workspace, Nx can visualize it using the
},
{
"name": "cart-e2e",
"type": "e2e",
"type": "app",
"data": {
"tags": ["scope:cart", "type:e2e"]
}
+1 -1
View File
@@ -119,7 +119,7 @@ Try playing around with a [fully interactive graph on a sample repo](https://nrw
},
{
"name": "e2e-cart",
"type": "e2e",
"type": "app",
"data": {
"root": "e2e/cart",
"tags": ["scope:cart", "type:e2e"]
+1 -1
View File
@@ -321,7 +321,7 @@ As you start modularizing your Angular workspace, Nx can visualize it using the
},
{
"name": "cart-e2e",
"type": "e2e",
"type": "app",
"data": {
"tags": ["scope:cart", "type:e2e"]
}
+1 -1
View File
@@ -6124,7 +6124,7 @@
},
{
"name": "nx-dev-e2e",
"type": "e2e",
"type": "app",
"data": {
"tags": ["scope:nx-dev", "type:e2e"],
"root": "nx-dev/nx-dev-e2e",
+5 -5
View File
@@ -521,7 +521,7 @@ You should be able to see something similar to the following in your browser.
},
{
"name": "angular-store-e2e",
"type": "e2e",
"type": "app",
"data": {
"tags": []
}
@@ -535,7 +535,7 @@ You should be able to see something similar to the following in your browser.
},
{
"name": "inventory-e2e",
"type": "e2e",
"type": "app",
"data": {
"tags": []
}
@@ -626,7 +626,7 @@ npx nx show project angular-store-e2e --web
{
"project": {
"name": "angular-store-e2e",
"type": "e2e",
"type": "app",
"data": {
"metadata": {
"targetGroups": {
@@ -948,7 +948,7 @@ npx nx graph --affected
},
{
"name": "angular-store-e2e",
"type": "e2e",
"type": "app",
"data": {
"tags": []
}
@@ -962,7 +962,7 @@ npx nx graph --affected
},
{
"name": "inventory-e2e",
"type": "e2e",
"type": "app",
"data": {
"tags": []
}
+2 -2
View File
@@ -217,7 +217,7 @@ nx show project e2e --web
{
"project": {
"name": "e2e",
"type": "e2e",
"type": "app",
"data": {
"metadata": {
"targetGroups": {
@@ -824,7 +824,7 @@ You should be able to see something similar to the following in your browser (hi
},
{
"name": "e2e",
"type": "e2e",
"type": "app",
"data": {
"tags": []
}
+4 -4
View File
@@ -590,7 +590,7 @@ You should be able to see something similar to the following in your browser.
},
{
"name": "react-store-e2e",
"type": "e2e",
"type": "app",
"data": {
"tags": []
}
@@ -604,7 +604,7 @@ You should be able to see something similar to the following in your browser.
},
{
"name": "inventory-e2e",
"type": "e2e",
"type": "app",
"data": {
"tags": []
}
@@ -761,7 +761,7 @@ npx nx graph --affected
},
{
"name": "react-store-e2e",
"type": "e2e",
"type": "app",
"data": {
"tags": []
}
@@ -775,7 +775,7 @@ npx nx graph --affected
},
{
"name": "inventory-e2e",
"type": "e2e",
"type": "app",
"data": {
"tags": []
}
+2 -2
View File
@@ -1052,7 +1052,7 @@
},
{
"name": "products-e2e",
"type": "e2e",
"type": "app",
"data": {
"tags": ["scope:products", "type:e2e"],
"root": "apps/products-e2e",
@@ -1124,7 +1124,7 @@
},
{
"name": "cart-e2e",
"type": "e2e",
"type": "app",
"data": {
"tags": ["scope:cart", "type:e2e"],
"root": "apps/cart-e2e",
@@ -1072,7 +1072,7 @@
},
{
"name": "products-e2e",
"type": "e2e",
"type": "app",
"data": {
"tags": ["scope:products", "type:e2e"],
"root": "apps/products-e2e",
@@ -1144,7 +1144,7 @@
},
{
"name": "cart-e2e",
"type": "e2e",
"type": "app",
"data": {
"tags": ["scope:cart", "type:e2e"],
"root": "apps/cart-e2e",
@@ -41,7 +41,7 @@ const args: Partial<TaskListProps> = {
},
{
name: 'app1-e2e',
type: 'e2e',
type: 'app',
data: {
root: 'apps/app1-e2e',
targets: { e2e: { configurations: { production: {} } } },
@@ -1052,7 +1052,7 @@
},
{
"name": "products-e2e",
"type": "e2e",
"type": "app",
"data": {
"tags": ["scope:products", "type:e2e"],
"root": "apps/products-e2e",
@@ -1124,7 +1124,7 @@
},
{
"name": "cart-e2e",
"type": "e2e",
"type": "app",
"data": {
"tags": ["scope:cart", "type:e2e"],
"root": "apps/cart-e2e",
@@ -1072,7 +1072,7 @@
},
{
"name": "products-e2e",
"type": "e2e",
"type": "app",
"data": {
"tags": ["scope:products", "type:e2e"],
"root": "apps/products-e2e",
@@ -1144,7 +1144,7 @@
},
{
"name": "cart-e2e",
"type": "e2e",
"type": "app",
"data": {
"tags": ["scope:cart", "type:e2e"],
"root": "apps/cart-e2e",
@@ -1079,7 +1079,7 @@ window.projectGraphResponse = {
},
{
name: 'products-e2e',
type: 'e2e',
type: 'app',
data: {
tags: ['scope:products', 'type:e2e'],
root: 'apps/products-e2e',
@@ -1150,7 +1150,7 @@ window.projectGraphResponse = {
},
{
name: 'cart-e2e',
type: 'e2e',
type: 'app',
data: {
tags: ['scope:cart', 'type:e2e'],
root: 'apps/cart-e2e',
@@ -607,7 +607,7 @@ export const Cart = {
args: {
project: {
name: 'cart-e2e',
type: 'e2e',
type: 'app',
data: {
root: 'apps/cart-e2e',
targets: {
@@ -669,7 +669,7 @@ describe('createNxReleaseConfig()', () => {
projectGraph.nodes['e2e-1'] = {
name: 'e2e-1',
type: 'e2e',
type: 'app',
data: {
root: 'apps/e2e-1',
targets: {},