-
Notifications
You must be signed in to change notification settings - Fork 11.9k
Expand file tree
/
Copy pathless.ts
More file actions
60 lines (58 loc) · 1.7 KB
/
less.ts
File metadata and controls
60 lines (58 loc) · 1.7 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
55
56
57
58
59
60
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 function () {
// TODO(architect): Delete this test. It is now in devkit/build-angular.
return writeMultipleFiles({
'src/styles.less': `
@import './imported-styles.less';
body { background-color: blue; }
`,
'src/imported-styles.less': 'p { background-color: red; }',
'src/app/app.less': `
.outer {
.inner {
background: #fff;
}
}
`,
})
.then(() => deleteFile('src/app/app.css'))
.then(() =>
updateJsonFile('angular.json', (workspaceJson) => {
const appArchitect = workspaceJson.projects['test-project'].architect;
appArchitect.build.options.styles = [{ input: 'src/styles.less' }];
}),
)
.then(() => replaceInFile('src/app/app.ts', './app.css', './app.less'))
.then(() => ng('build', '--source-map', '--configuration=development'))
.then(() =>
expectFileToMatch(
'dist/test-project/browser/styles.css',
/body\s*{\s*background-color: blue;\s*}/,
),
)
.then(() =>
expectFileToMatch(
'dist/test-project/browser/styles.css',
/p\s*{\s*background-color: red;\s*}/,
),
)
.then(() =>
expectToFail(() =>
expectFileToMatch('dist/test-project/browser/styles.css', '"mappings":""'),
),
)
.then(() =>
expectFileToMatch(
'dist/test-project/browser/main.js',
/.outer.*.inner.*background:\s*#[fF]+/,
),
);
}