Skip to content

Commit

Permalink
Merge pull request #41 from ngneat/v17-update
Browse files Browse the repository at this point in the history
v17 update
  • Loading branch information
pjlamb12 authored Nov 14, 2023
2 parents e84ef48 + b9925a1 commit 8111c4e
Show file tree
Hide file tree
Showing 14 changed files with 5,844 additions and 6,581 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,5 @@ testem.log
# System Files
.DS_Store
Thumbs.db

.nx/cache
2 changes: 2 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@
/coverage
*.yaml
*.yml

/.nx/cache
9 changes: 4 additions & 5 deletions apps/ngneat-dag-demo/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,18 +67,18 @@
"serve": {
"executor": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "ngneat-dag-demo:build"
"buildTarget": "ngneat-dag-demo:build"
},
"configurations": {
"production": {
"browserTarget": "ngneat-dag-demo:build:production"
"buildTarget": "ngneat-dag-demo:build:production"
}
}
},
"extract-i18n": {
"executor": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "ngneat-dag-demo:build"
"buildTarget": "ngneat-dag-demo:build"
}
},
"lint": {
Expand All @@ -90,8 +90,7 @@
"test": {
"executor": "@nx/jest:jest",
"options": {
"jestConfig": "apps/ngneat-dag-demo/jest.config.ts",
"passWithNoTests": true
"jestConfig": "apps/ngneat-dag-demo/jest.config.ts"
},
"outputs": ["{workspaceRoot}/coverage/apps/ngneat-dag-demo"]
},
Expand Down
6 changes: 2 additions & 4 deletions libs/dag-manager-service/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@
"executor": "@nx/angular:package",
"options": {
"tsConfig": "libs/dag-manager-service/tsconfig.lib.json",
"project": "libs/dag-manager-service/ng-package.json",
"updateBuildableProjectDepsInPackageJson": true
"project": "libs/dag-manager-service/ng-package.json"
},
"configurations": {
"production": {
Expand All @@ -27,8 +26,7 @@
"test": {
"executor": "@nx/jest:jest",
"options": {
"jestConfig": "libs/dag-manager-service/jest.config.ts",
"passWithNoTests": true
"jestConfig": "libs/dag-manager-service/jest.config.ts"
},
"outputs": ["{workspaceRoot}/coverage/libs/dag-manager-service"]
}
Expand Down
3 changes: 1 addition & 2 deletions libs/demo/feature/builder-demo/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@
"test": {
"executor": "@nx/jest:jest",
"options": {
"jestConfig": "libs/demo/feature/builder-demo/jest.config.ts",
"passWithNoTests": true
"jestConfig": "libs/demo/feature/builder-demo/jest.config.ts"
},
"outputs": ["{workspaceRoot}/coverage/libs/demo/feature/builder-demo"]
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div class="bg-gray-50 h-screen">
<div class="container mx-auto pt-8 px-4 lg:px-0">
<h1 class="text-center text-2xl lg:text-4xl font-semibold">
@ngneat/dag Live Demo
&#64;ngneat/dag Live Demo
</h1>

<ng-container *ngIf="workflow$ | async as workflow">
Expand Down
3 changes: 1 addition & 2 deletions libs/demo/feature/home/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@
"test": {
"executor": "@nx/jest:jest",
"options": {
"jestConfig": "libs/demo/feature/home/jest.config.ts",
"passWithNoTests": true
"jestConfig": "libs/demo/feature/home/jest.config.ts"
},
"outputs": ["{workspaceRoot}/coverage/libs/demo/feature/home"]
}
Expand Down
4 changes: 2 additions & 2 deletions libs/demo/feature/home/src/lib/landing/landing.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -78,14 +78,14 @@
<h1
class="text-4xl tracking-tight font-extrabold text-gray-900 sm:text-5xl md:text-6xl"
>
<span class="block xl:inline">@ngneat/dag</span>
<span class="block xl:inline">&#64;ngneat/dag</span>
<span class="block text-red-400 xl:inline"> Demonstration</span>
</h1>
<p
data-cy="library-description"
class="mt-3 max-w-md mx-auto text-base text-gray-500 sm:text-lg md:mt-5 md:text-xl md:max-w-3xl"
>
@ngneat/dag is designed to assist in creating and managing a
&#64;ngneat/dag is designed to assist in creating and managing a
<a href="https://en.wikipedia.org/wiki/Directed_acyclic_graph"
>directed acycylic graph</a
>
Expand Down
3 changes: 1 addition & 2 deletions libs/shared/ui/components/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@
"test": {
"executor": "@nx/jest:jest",
"options": {
"jestConfig": "libs/shared/ui/components/jest.config.ts",
"passWithNoTests": true
"jestConfig": "libs/shared/ui/components/jest.config.ts"
},
"outputs": ["{workspaceRoot}/coverage/libs/shared/ui/components"]
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
src="/assets/images/logo.svg"
alt="Workflow"
/>
<p class="ml-3 font-semibold text-2xl">@ngneat/dag</p>
<p class="ml-3 font-semibold text-2xl">&#64;ngneat/dag</p>
</a>
</div>
<div class="hidden sm:ml-6 sm:flex sm:space-x-8">
Expand Down
Loading

0 comments on commit 8111c4e

Please sign in to comment.