-
Notifications
You must be signed in to change notification settings - Fork 11.9k
Expand file tree
/
Copy pathsass.ts
More file actions
54 lines (49 loc) · 1.45 KB
/
sass.ts
File metadata and controls
54 lines (49 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import {
writeMultipleFiles,
deleteFile,
expectFileToMatch,
replaceInFile,
} from '../../../utils/fs';
import { expectToFail } from '../../../utils/utils';
import { ng } from '../../../utils/process';
import { updateJsonFile } from '../../../utils/project';
export default async function () {
await writeMultipleFiles({
'src/styles.sass': `
@import './imported-styles.sass'
body
background-color: blue
`,
'src/imported-styles.sass': `
p
background-color: red
`,
'src/app/app.sass': `
.outer
.inner
background: #fff
`,
});
await updateJsonFile('angular.json', (workspaceJson) => {
const appArchitect = workspaceJson.projects['test-project'].architect;
appArchitect.build.options.styles = [{ input: 'src/styles.sass' }];
});
await deleteFile('src/app/app.css');
await replaceInFile('src/app/app.ts', './app.css', './app.sass');
await ng('build', '--source-map', '--configuration=development');
await expectFileToMatch(
'dist/test-project/browser/styles.css',
/body\s*{\s*background-color: blue;\s*}/,
);
await expectFileToMatch(
'dist/test-project/browser/styles.css',
/p\s*{\s*background-color: red;\s*}/,
);
await expectToFail(() =>
expectFileToMatch('dist/test-project/browser/styles.css', '"mappings":""'),
);
await expectFileToMatch(
'dist/test-project/browser/main.js',
/.outer.*.inner.*background:\s*#[fF]+/,
);
}