Skip to content

Commit 2fcff55

Browse files
chore(deps-dev): bump shx from 0.3.4 to 0.4.0 in /test/angular-ng-boosted in the angular-ng-boosted-all-deps group across 1 directory (#539)
* chore(deps-dev): bump shx Bumps the angular-ng-boosted-all-deps group with 1 update in the /test/angular-ng-boosted directory: [shx](https://github.com/shelljs/shx). Updates `shx` from 0.3.4 to 0.4.0 - [Release notes](https://github.com/shelljs/shx/releases) - [Changelog](https://github.com/shelljs/shx/blob/main/CHANGELOG.md) - [Commits](shelljs/shx@v0.3.4...v0.4.0) --- updated-dependencies: - dependency-name: shx dependency-type: direct:development update-type: version-update:semver-minor dependency-group: angular-ng-boosted-all-deps ... Signed-off-by: dependabot[bot] <[email protected]> * Simplify and make angular-ng-boosted compile --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jacques Lebourgeois <[email protected]>
1 parent f83df38 commit 2fcff55

16 files changed

+233
-692
lines changed

test/angular-ng-boosted/README.md

+1-419
Large diffs are not rendered by default.

test/angular-ng-boosted/package-lock.json

+194-12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/angular-ng-boosted/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"karma-jasmine": "~5.1.0",
4646
"karma-jasmine-html-reporter": "~2.1.0",
4747
"prismjs": "^1.30.0",
48-
"shx": "^0.3.4",
48+
"shx": "^0.4.0",
4949
"typescript": "~5.7.3"
5050
}
5151
}
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
11
import { Routes } from '@angular/router';
22
import { OdsChartsComponent } from '@pages/ods-charts/ods-charts.component';
33
import { HomeComponent } from '@pages/home/home.component';
4-
import { NgBootstrapComponentsComponent } from '@pages/ng-bootstrap-components/ng-bootstrap-components.component';
5-
import { IconsComponent } from '@pages/icons/icons.component';
64

75
export const routes: Routes = [
86
{ path: '', redirectTo: '/home', pathMatch: 'full' },
97
{ path: 'home', component: HomeComponent },
10-
{ path: 'ng-bootstrap-components', component: NgBootstrapComponentsComponent },
118
{ path: 'charts', component: OdsChartsComponent },
12-
{ path: 'icons', component: IconsComponent },
139
];

test/angular-ng-boosted/src/app/components/header/header.component.html

-6
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,6 @@
2323
<li class="nav-item">
2424
<a class="nav-link" [ngClass]="{ active: router.url.indexOf('charts') > -1 }" routerLink="/charts" [attr.aria-current]="router.url.indexOf('charts') > -1 ? 'page' : null"> ODS charts </a>
2525
</li>
26-
<li class="nav-item">
27-
<a class="nav-link" [ngClass]="{ active: router.url.indexOf('ng-bootstrap-components') > -1 }" routerLink="/ng-bootstrap-components" [attr.aria-current]="router.url.indexOf('ng-bootstrap-components') > -1 ? 'page' : null"> ng-bootstrap components </a>
28-
</li>
29-
<li class="nav-item">
30-
<a class="nav-link" [ngClass]="{ active: router.url.indexOf('icons') > -1 }" routerLink="/icons" [attr.aria-current]="router.url.indexOf('icons') > -1 ? 'page' : null"> Icons </a>
31-
</li>
3226
</ul>
3327
</div>
3428

0 commit comments

Comments
 (0)