Skip to content

Commit f080d27

Browse files
committed
update build
1 parent eefd861 commit f080d27

File tree

4 files changed

+30
-30
lines changed

4 files changed

+30
-30
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ jobs:
1212
node-version: '22.x'
1313
registry-url: 'https://registry.npmjs.org'
1414
- run: npm ci
15-
- run: npm run build-sdk
15+
- run: npm run build

.github/workflows/npm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
node-version: '22.x'
1313
registry-url: 'https://registry.npmjs.org'
1414
- run: npm ci
15-
- run: npm run build-sdk
15+
- run: npm run build
1616
- run: cd dist/fusio-sdk && npm publish
1717
env:
1818
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

package-lock.json

Lines changed: 26 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

projects/fusio-sdk/src/lib/component/navigation/navigation.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ export class NavigationComponent implements OnInit {
2121

2222
protected readonly Array = Array;
2323

24-
constructor(private navigation: NavigationService, private config: ConfigService, private injector: EnvironmentInjector) {
24+
constructor(private navigation: NavigationService, private config: ConfigService) {
2525
}
2626

2727
async ngOnInit(): Promise<void> {
2828
this.title = this.config.getTitle() || 'Fusio';
2929
this.version = this.config.getVersion();
30-
this.items = await this.navigation.getMainNavigation(this.injector);
30+
this.items = await this.navigation.getMainNavigation();
3131
}
3232

3333
changeNavHeading(item: GroupItem): void {

0 commit comments

Comments
 (0)