Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated packages to angular 18 #458

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

# dependencies
/node_modules

/.angular
# profiling files
chrome-profiler-events.json
speed-measure-plugin.json
Expand Down
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,20 @@ This app is configured to auto trigger deployment on master and staging branches
2. Any push or merge to master branch deploys this app to civis.vote


## Files that require editing due to commented code
The following files in the code include commented code which disable the working of mnay features of the application
The nature of the error is most likely related to the typescript language and not a runtime error

read-respond.component.ts
consultation-questionnare.component.ts
graphql.service.ts
consultation-response-test.component.ts
response-footer.component.ts
city-selection-modal.component.ts
create-consultation.component.ts
consultation-list.component.ts
leader-board.component.ts

# AngularStarterpack

This app is built from Angular Boilerplate. Angular Boilerplate is a template that can be used to kickstart the development on any Angular project with speed. In the 4 years of working in a service industry, we have built numerous projects and accumulated a lot of learnings from them, that are baked into this boilerplate. Over time, we also noticed certain similarities that repeat themselves in all the projects. We did not necessarily have to re-invent the wheel everytime a new project was started. This boilerplate was all that we would need to get to writing the business logic of the project, the stuff that truly mattered. Using this boilerplate as the base for a project would also force devs to adopt a certian standard set by the boilerplate, thereby ensuring everyone is writing efficient, abstarcted and highly readable code!
Expand Down Expand Up @@ -76,3 +90,4 @@ The boilerplate has the following-
3. isObjectEmpty
4. isMobile
5. getRelativeTime

17 changes: 7 additions & 10 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@
"node_modules/font-awesome/css/font-awesome.css",
"node_modules/angular2-draggable/css/resizable.min.css"
],
"scripts": [],
"es5BrowserSupport": true
"scripts": []
},
"configurations": {
"production": {
Expand All @@ -47,7 +46,6 @@
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"extractCss": true,
"namedChunks": false,
"aot": true,
"extractLicenses": true,
Expand Down Expand Up @@ -90,28 +88,28 @@
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "civis:build",
"buildTarget": "civis:build",
"port": 3400
},
"configurations": {
"production": {
"browserTarget": "civis:build:production"
"buildTarget": "civis:build:production"
},
"staging": {
"browserTarget": "civis:build:staging"
"buildTarget": "civis:build:staging"
},
"dev-staging": {
"browserTarget": "civis:build:dev-staging"
"buildTarget": "civis:build:dev-staging"
},
"dev-production": {
"browserTarget": "civis:build:dev-production"
"buildTarget": "civis:build:dev-production"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "civis:build"
"buildTarget": "civis:build"
}
},
"test": {
Expand Down Expand Up @@ -175,7 +173,6 @@
}
}
},
"defaultProject": "civis",
"cli": {
"analytics": "399e69e2-f95b-459c-8176-7903c20092bd"
}
Expand Down
Loading