Skip to content

Commit

Permalink
fix(components/packages): remove forward slash to compat stylesheet i…
Browse files Browse the repository at this point in the history
…n angular.json (#696)
  • Loading branch information
Blackbaud-SteveBrush authored Oct 17, 2022
1 parent e38a2da commit 5b7eb4b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { join } from 'path';
import { createTestApp, createTestLibrary } from '../../testing/scaffold';

describe('Migrations > Add compat stylesheets', () => {
const compatStylesheetPath = '/src/app/skyux7-compat.css';
const compatStylesheetPath = 'src/app/skyux7-compat.css';
const alertContents = `/*******************************************************************************
* TODO: The following component libraries introduced visual breaking changes
* in SKY UX 7. Each block of CSS reintroduces the styles that were changed or
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Rule, chain } from '@angular-devkit/schematics';
import { readRequiredFile } from '../../utility/tree';
import { updateWorkspace } from '../../utility/workspace';

const SKYUX7_COMPAT_CSS_PATH = '/src/app/skyux7-compat.css';
const SKYUX7_COMPAT_CSS_PATH = 'src/app/skyux7-compat.css';

const compatStyles = {
libraries: [
Expand Down

0 comments on commit 5b7eb4b

Please sign in to comment.