Skip to content

Commit 47ccaad

Browse files
authored
feat(setup): Add module boundaries
1 parent 209c068 commit 47ccaad

File tree

8 files changed

+12
-3
lines changed

8 files changed

+12
-3
lines changed

.eslintrc.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,11 @@
9696
"allow": [],
9797
"depConstraints": [
9898
{
99-
"sourceTag": "*",
99+
"sourceTag": "test-app",
100+
"onlyDependOnLibsWithTags": ["*"]
101+
},
102+
{
103+
"sourceTag": "docs",
100104
"onlyDependOnLibsWithTags": ["*"]
101105
}
102106
]

apps/cookies-test/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"projectType": "application",
55
"prefix": "app",
66
"sourceRoot": "apps/cookies-test/src",
7-
"tags": [],
7+
"tags": ["test-app"],
88
"targets": {
99
"build": {
1010
"executor": "@ng-doc/builder:application",

apps/docs/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"projectType": "application",
55
"prefix": "app",
66
"sourceRoot": "apps/docs/src",
7-
"tags": [],
7+
"tags": ["docs"],
88
"targets": {
99
"build": {
1010
"executor": "@ng-doc/builder:application",

apps/form-test/project.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"$schema": "../../node_modules/nx/schemas/project-schema.json",
44
"projectType": "application",
55
"sourceRoot": "apps/form-test/src",
6+
"tags": ["test-app"],
67
"prefix": "app",
78
"generators": {
89
"@schematics/angular:component": {

apps/i18n-test/project.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"$schema": "../../node_modules/nx/schemas/project-schema.json",
44
"projectType": "application",
55
"sourceRoot": "apps/i18n-test/src",
6+
"tags": ["test-app"],
67
"prefix": "app",
78
"generators": {
89
"@schematics/angular:component": {

apps/layout-test/project.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"$schema": "../../node_modules/nx/schemas/project-schema.json",
44
"projectType": "application",
55
"sourceRoot": "apps/layout-test/src",
6+
"tags": ["test-app"],
67
"prefix": "app",
78
"generators": {
89
"@schematics/angular:component": {

apps/store-test/project.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"$schema": "../../node_modules/nx/schemas/project-schema.json",
44
"projectType": "application",
55
"sourceRoot": "apps/store-test/src",
6+
"tags": ["test-app"],
67
"prefix": "app",
78
"generators": {
89
"@schematics/angular:component": {

apps/table-test/project.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"projectType": "application",
55
"sourceRoot": "apps/table-test/src",
66
"prefix": "app",
7+
"tags": ["test-app"],
78
"generators": {
89
"@schematics/angular:component": {
910
"style": "scss"

0 commit comments

Comments
 (0)