Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@
],
"rxjs/no-ignored-observable": "warn",

// disable standalone preference rule — app uses ngmodule architecture
"@angular-eslint/prefer-standalone": "off",

// General TypeScript best practices
"prefer-const": "error",
"no-console": [
Expand Down
23 changes: 8 additions & 15 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"builder": "@angular-devkit/build-angular:application",
"options": {
"allowedCommonJsDependencies": [
"pusher-js",
Expand All @@ -49,8 +49,8 @@
"i18nDuplicateTranslation": "warning",
"outputPath": "dist/v3",
"index": "projects/v3/src/index.html",
"main": "projects/v3/src/main.ts",
"polyfills": "projects/v3/src/polyfills.ts",
"browser": "projects/v3/src/main.ts",
"polyfills": ["projects/v3/src/polyfills.ts"],
"tsConfig": "projects/v3/tsconfig.app.json",
"inlineStyleLanguage": "scss",
"assets": [
Expand All @@ -73,11 +73,11 @@
],
"styles": [
{
"input": "projects/v3/src/theme/variables.scss",
"input": "projects/v3/src/global.scss",
"inject": true
},
{
"input": "projects/v3/src/global.scss",
"input": "projects/v3/src/theme/variables.scss",
"inject": true
},
{
Expand All @@ -86,9 +86,6 @@
}
],
"scripts": [],
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true
Expand Down Expand Up @@ -124,12 +121,10 @@
"with": "projects/v3/src/environments/environment.custom.ts"
}
],
"buildOptimizer": true,
"outputHashing": "all",
"sourceMap": false,
"namedChunks": false,
"extractLicenses": true,
"vendorChunk": false
"extractLicenses": true
},
"stage": {
"budgets": [
Expand All @@ -148,9 +143,7 @@
"with": "projects/v3/src/environments/environment.custom.ts"
}
],
"buildOptimizer": false,
"optimization": false,
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
Expand Down Expand Up @@ -188,9 +181,7 @@
"maximumWarning": "20kb"
}
],
"buildOptimizer": false,
"optimization": false,
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
Expand Down Expand Up @@ -231,10 +222,12 @@
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"builderMode": "application",
"main": "projects/v3/src/test.ts",
"karmaConfig": "projects/v3/karma.conf.js",
"tsConfig": "projects/v3/tsconfig.spec.json",
"inlineStyleLanguage": "scss",
"include": ["projects/v3/src/**/*.spec.ts"],
"assets": ["./projects/v3/src/assets/icon/favicon.ico", "projects/v3/src/assets"],
"styles": ["projects/v3/src/styles.scss"],
"scripts": []
Expand Down
15 changes: 14 additions & 1 deletion docs/docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,25 @@
# Practera App Documentation
This is practera documentation with more informations.

### Upgrades
- [Angular 17 → 18 & Ionic 7 → 8](./upgrades/angular-17-to-18-ionic-7-to-8.md)

### Services
- [Chat Service](./services/chatService.md)

### Components
- [Chat Room Component](./components/chatRoomComponent.md)
- [Chat List Component](./components/chatListComponent.md)
- [Topic Component](./components/topicComponent.md)

### Directives
- [Toggle Label Directive](./directives/toggleLabelDirective.md)
- [Toggle Label Directive](./directives/toggleLabelDirective.md)

### Features
- [Assessment Pagination Feature Toggle](./features/assessment-pagination-feature-toggle.md)
- [Slider Rating Implementation](./features/slider-rating-implementation.md)

### Fixes
- [CORE-7942 Whitespace Fix](./fixes/CORE-7942-whitespace-fix.md)
- [CORE-8002 Pulse Check Workflow](./fixes/CORE-8002-pulsecheck-workflow.md)
- [CORE-8166/8167 Pagination Answer Persistence](./fixes/CORE-8166-8167-pagination-answer-persistence.md)
Loading
Loading