-
Notifications
You must be signed in to change notification settings - Fork 11.9k
Expand file tree
/
Copy pathscss.ts
More file actions
52 lines (47 loc) · 1.46 KB
/
scss.ts
File metadata and controls
52 lines (47 loc) · 1.46 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
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.scss': `
@import './imported-styles.scss';
body { background-color: blue; }
`,
'src/imported-styles.scss': 'p { background-color: red; }',
'src/app/app.scss': `
.outer {
.inner {
background: #fff;
}
}
`,
});
await updateJsonFile('angular.json', (workspaceJson) => {
const appArchitect = workspaceJson.projects['test-project'].architect;
appArchitect.build.options.styles = [{ input: 'src/styles.scss' }];
});
await deleteFile('src/app/app.css');
await replaceInFile('src/app/app.ts', './app.css', './app.scss');
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]+/,
);
}