From 7657fb63494afa08b76027ad49c5891f400137f7 Mon Sep 17 00:00:00 2001 From: Henry Taeschner Date: Thu, 11 Jan 2024 07:08:25 +0100 Subject: [PATCH] fix: remove empty app.comonent.scss --- karma.conf.js | 1 + src/app/app.component.scss | 0 src/app/app.component.ts | 3 +-- 3 files changed, 2 insertions(+), 2 deletions(-) delete mode 100644 src/app/app.component.scss diff --git a/karma.conf.js b/karma.conf.js index 813dc58..cac700d 100644 --- a/karma.conf.js +++ b/karma.conf.js @@ -20,6 +20,7 @@ module.exports = function (config) { // the possible options are listed at https://jasmine.github.io/api/edge/Configuration.html // for example, you can disable the random execution with `random: false` // or set a specific seed with `seed: 4321` + random: false }, clearContext: false // leave Jasmine Spec Runner output visible in browser }, diff --git a/src/app/app.component.scss b/src/app/app.component.scss deleted file mode 100644 index e69de29..0000000 diff --git a/src/app/app.component.ts b/src/app/app.component.ts index 7b6e0fa..92b1342 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -1,8 +1,7 @@ import { Component } from '@angular/core' @Component({ selector: 'tm-root', - templateUrl: './app.component.html', - styleUrls: ['./app.component.scss'] + templateUrl: './app.component.html' }) export class AppComponent { title = 'theme-mgmt'