-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* NPM updates * Updated ngrx * Readded package lock * Update typescript.yml to use node 22. * Update ruby.yml to use Node 22. * Updated Angular. * Updated rubocop * Updated rails * Fixed package-lock * Updated eslint * Slightly updated angular * Extended sleep for flaky new_training_session_spec. * Updated package-lock.json * Updated NPM * Updated package-lock.json * Upgradet typescript-eslint * Upgraded rspec-rails * Upgraded @rails/actioncable * Updated gems * New cop * New cops * Updated selenium webdriver * Updated angular * Made all components and pipes NOT standalone (for migration to Angular 19) * Revert "Made all components and pipes NOT standalone (for migration to Angular 19)" This reverts commit ca56d6a. * Removed unused delete-user-button (note that delete-account-button is the real one) * Migrated to standalone components properly * Migrated control flows * Added new dependencies now that we have standalone components * Deduplicated browser module a bit * REmoved browser module a bit more * REmoved browser module a bit more * Export async pipe via shared * Fixed typescript tests * Fixed more missing dependencies not visible in tests * Updated stuff. * Tried to migrate to standalone app component * Unmigrated main.ts * Partially migrated away from shared module * Migrated bootstrapping * All dependencies for standalone modules! Yay * Fixed angular.json * Added directives dependencies that weren't noticed at compile time * More invisible directive dependencies fixed * Added app config * Fixed router links * More router links * Add package libmagic-dev * Reordered packages to be installed before ruby * Sleep less since it doesn't help much anyway
- Loading branch information
Showing
113 changed files
with
4,555 additions
and
5,050 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,13 @@ | ||
import { Component } from '@angular/core'; | ||
import { ToolbarComponent } from '@core/toolbar/toolbar.component'; | ||
import { FooterComponent } from '@core/footer/footer.component'; | ||
import { RouterOutlet } from '@angular/router' | ||
|
||
@Component({ | ||
selector: 'cube-trainer', | ||
templateUrl: './app.component.html', | ||
styleUrls: ['./app.component.css'] | ||
styleUrls: ['./app.component.css'], | ||
imports: [ToolbarComponent, FooterComponent, RouterOutlet], | ||
}) | ||
export class AppComponent { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.