-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmanual-testing.js
79 lines (76 loc) · 1.95 KB
/
manual-testing.js
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
'use strict';
/**
* @file A place to play around with/try to out Red Perfume
* @author TheJaredWilcurt
*/
const redPerfume = require('./index.js');
redPerfume.atomize({
tasks: [
{
uglify: false,
styles: {
in: [
'./manual-test/input.css'
],
out: './manual-test/output.css',
data: `
.cow,
.cat {
font-size: 12px;
padding: 8px;
}
.dog {
font-size: 12px;
background: #F00;
padding: 8px;
}
`,
hooks: {
afterOutput: function (options, { task, inputCss, atomizedCss, classMap, styleErrors }) {
console.log({ task, inputCss, atomizedCss, classMap, styleErrors });
}
}
},
markup: [
{
data: `
<!DOCTYPE html>
<html>
<head>
<title>Test</title>
</head>
<body>
<p class="cool cow moo">
Hi there!
</p>
<!--
<span class="dog">comments are skipped</span>
-->
<h1 class="cool cat nice wow">
Meow
</h1>
<h2 class="dog hover">
Woof
</h2>
</body>
</html>
`,
out: './manual-test/out.html',
hooks: {
afterOutput: function (options, { task, subTask, classMap, inputHtml, atomizedHtml, markupErrors }) {
console.log({ task, subTask, classMap, inputHtml, atomizedHtml, markupErrors });
}
}
}
],
scripts: {
out: './manual-test/out.json',
hooks: {
afterOutput: function (options, { task, classMap, scriptErrors }) {
console.log({ task, classMap, scriptErrors });
}
}
}
}
]
});