forked from parcel-bundler/parcel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylus.js
101 lines (84 loc) · 2.92 KB
/
stylus.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
const assert = require('assert');
const fs = require('fs');
const {bundle, run, assertBundleTree} = require('./utils');
describe('stylus', function () {
it('should support requiring stylus files', async function () {
let b = await bundle(__dirname + '/integration/stylus/index.js');
assertBundleTree(b, {
name: 'index.js',
assets: ['index.js', 'index.styl'],
childBundles: [{
name: 'index.css',
assets: ['index.styl'],
childBundles: []
}]
});
let output = run(b);
assert.equal(typeof output, 'function');
assert.equal(output(), 2);
let css = fs.readFileSync(__dirname + '/dist/index.css', 'utf8');
assert(css.includes('.index'));
});
it('should support requiring stylus files with dependencies', async function () {
let b = await bundle(__dirname + '/integration/stylus-deps/index.js');
// a.styl shouldn't be included as a dependency that we can see.
// stylus takes care of inlining it.
assertBundleTree(b, {
name: 'index.js',
assets: ['index.js', 'index.styl'],
childBundles: [{
name: 'index.css',
assets: ['index.styl'],
childBundles: []
}]
});
let output = run(b);
assert.equal(typeof output, 'function');
assert.equal(output(), 2);
let css = fs.readFileSync(__dirname + '/dist/index.css', 'utf8');
assert(css.includes('.index'));
assert(css.includes('.a'));
assert(css.includes('-webkit-box'));
});
it('should support linking to assets with url() from stylus', async function () {
let b = await bundle(__dirname + '/integration/stylus-url/index.js');
assertBundleTree(b, {
name: 'index.js',
assets: ['index.js', 'index.styl'],
childBundles: [{
name: 'index.css',
assets: ['index.styl'],
childBundles: []
}, {
type: 'woff2',
assets: ['test.woff2'],
childBundles: []
}]
});
let output = run(b);
assert.equal(typeof output, 'function');
assert.equal(output(), 2);
let css = fs.readFileSync(__dirname + '/dist/index.css', 'utf8');
assert(/url\("[0-9a-f]+\.woff2"\)/.test(css));
assert(css.includes('url("http://google.com")'));
assert(css.includes('.index'));
assert(fs.existsSync(__dirname + '/dist/' + css.match(/url\("([0-9a-f]+\.woff2)"\)/)[1]));
});
it('should support transforming stylus with postcss', async function () {
let b = await bundle(__dirname + '/integration/stylus-postcss/index.js');
assertBundleTree(b, {
name: 'index.js',
assets: ['index.js', 'index.styl'],
childBundles: [{
name: 'index.css',
assets: ['index.styl'],
childBundles: []
}]
});
let output = run(b);
assert.equal(typeof output, 'function');
assert.equal(output(), '_index_g9mqo_1');
let css = fs.readFileSync(__dirname + '/dist/index.css', 'utf8');
assert(css.includes('._index_g9mqo_1'));
});
});