Skip to content

Commit

Permalink
fix: build freeze issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mertsincan committed Jan 17, 2025
1 parent b691627 commit 754df54
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 18 deletions.
4 changes: 4 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ indent_size = 4
insert_final_newline = true
trim_trailing_whitespace = true

[*.ts]
quote_type = single
ij_typescript_use_double_quotes = false

[*.md]
max_line_length = off
trim_trailing_whitespace = false
4 changes: 2 additions & 2 deletions apps/showcase/app/app.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ import Noir from '@/themes/app-theme';
import { provideHttpClient, withFetch } from '@angular/common/http';
import { ApplicationConfig } from '@angular/core';
import { provideAnimationsAsync } from '@angular/platform-browser/animations/async';
import { provideRouter, withEnabledBlockingInitialNavigation, withInMemoryScrolling } from '@angular/router';
import { provideRouter, withInMemoryScrolling } from '@angular/router';
import { providePrimeNG } from 'primeng/config';

export const appConfig: ApplicationConfig = {
providers: [
provideRouter(routes, withInMemoryScrolling({ anchorScrolling: 'enabled', scrollPositionRestoration: 'enabled' }), withEnabledBlockingInitialNavigation()),
provideRouter(routes, withInMemoryScrolling({ anchorScrolling: 'enabled', scrollPositionRestoration: 'enabled' })), // withEnabledBlockingInitialNavigation()
provideHttpClient(withFetch()),
provideAnimationsAsync(),
providePrimeNG({ theme: Noir, ripple: false, inputStyle: 'outlined' })
Expand Down
4 changes: 2 additions & 2 deletions packages/primeng/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"karma-jasmine-html-reporter": "~2.1.0",
"tslib": "^2.5.0"
},
"peerDependencies": {
Expand All @@ -61,4 +61,4 @@
"@primeuix/styled": "catalog:",
"@primeuix/utils": "catalog:"
}
}
}
28 changes: 14 additions & 14 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 754df54

Please sign in to comment.