Skip to content

Commit

Permalink
Refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
mertsincan committed Nov 12, 2024
1 parent ab75180 commit dfbfebc
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 24 deletions.
22 changes: 11 additions & 11 deletions apps/showcase/routes.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
/
/theming
/tieredmenu
/timeline
/toast
/togglebutton
/toolbar
/tooltip
/tree
/treeselect
/treetable
/uikit
/installation
/accordion
/animateonscroll
Expand Down Expand Up @@ -115,14 +126,3 @@
/templates/ultima
/templates/verona
/terminal
/theming
/tieredmenu
/timeline
/toast
/togglebutton
/toolbar
/tooltip
/tree
/treeselect
/treetable
/uikit
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ConfigurationDemo } from '.';
import { ConfigurationDemo } from './';

export default [
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { InstallationDemo } from '.';
import { InstallationDemo } from './';

export default [
{
Expand Down
2 changes: 1 addition & 1 deletion apps/showcase/src/app/showcase/pages/message/routes.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { MessageDemo } from '.';
import { MessageDemo } from './';

export default [
{
Expand Down
2 changes: 1 addition & 1 deletion apps/showcase/src/app/showcase/pages/textarea/routes.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { TextareaDemo } from '.';
import { TextareaDemo } from './';

export default [
{
Expand Down
4 changes: 2 additions & 2 deletions apps/showcase/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app/showcase/layout/app.component';
import { appConfig } from './app/showcase/layout/app.config';
import { AppComponent } from '@layout/app.component';
import { appConfig } from '@layout/app.config';

bootstrapApplication(AppComponent, appConfig).catch((err) => console.error(err));
4 changes: 0 additions & 4 deletions apps/showcase/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@
"paths": {
"@primeng/themes/*": ["../../packages/themes/src/presets/*"],
"@primeng/themes": ["../../packages/themes/src/index.ts"],
"@primeng/icons/*": ["../../packages/icons/src/*/public_api"],
"@primeng/icons": ["../../packages/icons/src/public_api"],
"@primeng/core/*": ["../../packages/core/src/*/public_api"],
"@primeng/core": ["../../packages/core/src/public_api"],
"primeng/*": ["../../packages/primeng/src/*/public_api"],

"@pages/*": ["src/app/showcase/pages/*"],
Expand Down
4 changes: 1 addition & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,7 @@
"release:rc": "pnpm run build && pnpm recursive publish --filter './packages/*' --no-git-checks --report-summary --tag rc",
"build": "NODE_ENV=production pnpm run build:check && pnpm run build:packages",
"build:check": "pnpm run format:check && pnpm run security:check",
"build:packages": "pnpm --filter core build && pnpm --filter icons build && pnpm run build:lib && pnpm run build:themes && pnpm run build:showcase",
"build:core": "pnpm --filter core build",
"build:icons": "pnpm --filter icons build",
"build:packages": "pnpm run build:lib && pnpm run build:themes && pnpm run build:showcase",
"build:lib": "pnpm --filter primeng build",
"build:themes": "pnpm --filter themes build",
"build:showcase": "pnpm --filter showcase build",
Expand Down
3 changes: 3 additions & 0 deletions packages/themes/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,5 +82,8 @@
},
"dependencies": {
"@primeuix/styled": "catalog:"
},
"engines": {
"node": ">=12.11.0"
}
}

0 comments on commit dfbfebc

Please sign in to comment.