Skip to content

Commit 5a9cadb

Browse files
committed
Adding an example SASS file.
1 parent 5c6bf14 commit 5a9cadb

3 files changed

Lines changed: 10 additions & 2 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ lib-es6
6262
dist
6363
temp
6464
*.scss.ts
65+
*.sass.ts
6566

6667
# Rush files
6768
common/temp/**
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
body
2+
background: red;
3+
4+
.foo
5+
border: 1px solid red;

build-tests/web-library-build-test/src/test.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
22
// See LICENSE in the project root for license information.
33

4-
import test from './test.scss';
4+
import testScss from './test.scss';
5+
import testSass from './test.sass';
56
import testFunction from './preCopyTest';
67

78
/** @public */
@@ -16,7 +17,8 @@ export function add(num1: number, num2: number): number {
1617

1718
/** @public */
1819
export function logClass(): void {
19-
console.log(test.foo);
20+
console.log(testScss.foo);
21+
console.log(testSass.foo);
2022
}
2123

2224
testFunction();

0 commit comments

Comments
 (0)