File tree Expand file tree Collapse file tree 4 files changed +96
-0
lines changed Expand file tree Collapse file tree 4 files changed +96
-0
lines changed Original file line number Diff line number Diff line change 35
35
b: true;
36
36
}
37
37
38
+ <===>
39
+ ================================================================================
40
+ <===> same_module/dash_insensitive/dash_to_underscore/input.scss
41
+ @function a_b() {@return null}
42
+
43
+ c {d: function-exists(a-b)}
44
+
45
+ <===> same_module/dash_insensitive/dash_to_underscore/output.css
46
+ c {
47
+ d: true;
48
+ }
49
+
50
+ <===>
51
+ ================================================================================
52
+ <===> same_module/dash_insensitive/underscore_to_dash/input.scss
53
+ @function a-b() {@return null}
54
+
55
+ c {d: function-exists(a_b)}
56
+
57
+ <===> same_module/dash_insensitive/underscore_to_dash/output.css
58
+ c {
59
+ d: true;
60
+ }
61
+
38
62
<===>
39
63
================================================================================
40
64
<===> same_module/non_existent/input.scss
Original file line number Diff line number Diff line change 69
69
sass-fn: #ff9999;
70
70
css-fn: lighten(red, 30%);
71
71
}
72
+
73
+ <===>
74
+ ================================================================================
75
+ <===> dash_insensitive/dash_to_underscore/input.scss
76
+ @function add_two($v) {@return $v + 2}
77
+
78
+ a {b: call(get-function(add-two), 10)}
79
+
80
+ <===> dash_insensitive/dash_to_underscore/output.css
81
+ a {
82
+ b: 12;
83
+ }
84
+
85
+ <===>
86
+ ================================================================================
87
+ <===> dash_insensitive/underscore_to_dash/input.scss
88
+ @function add-two($v) {@return $v + 2}
89
+
90
+ a {b: call(get-function(add_two), 10)}
91
+
92
+ <===> dash_insensitive/underscore_to_dash/output.css
93
+ a {
94
+ b: 12;
95
+ }
Original file line number Diff line number Diff line change 35
35
b: true;
36
36
}
37
37
38
+ <===>
39
+ ================================================================================
40
+ <===> dash_insensitive/dash_to_underscore/input.scss
41
+ $a_b: null;
42
+
43
+ c {d: global-variable-exists(a-b)}
44
+
45
+ <===> dash_insensitive/dash_to_underscore/output.css
46
+ c {
47
+ d: true;
48
+ }
49
+
50
+ <===>
51
+ ================================================================================
52
+ <===> dash_insensitive/underscore_to_dash/input.scss
53
+ $a-b: null;
54
+
55
+ c {d: global-variable-exists(a_b)}
56
+
57
+ <===> dash_insensitive/underscore_to_dash/output.css
58
+ c {
59
+ d: true;
60
+ }
61
+
38
62
<===>
39
63
================================================================================
40
64
<===> same_module/non_existent/input.scss
Original file line number Diff line number Diff line change 21
21
b: true;
22
22
}
23
23
24
+ <===>
25
+ ================================================================================
26
+ <===> dash_insensitive/dash_to_underscore/input.scss
27
+ $a_b: null;
28
+
29
+ c {d: variable-exists(a-b)}
30
+
31
+ <===> dash_insensitive/dash_to_underscore/output.css
32
+ c {
33
+ d: true;
34
+ }
35
+
36
+ <===>
37
+ ================================================================================
38
+ <===> dash_insensitive/underscore_to_dash/input.scss
39
+ $a-b: null;
40
+
41
+ c {d: variable-exists(a_b)}
42
+
43
+ <===> dash_insensitive/underscore_to_dash/output.css
44
+ c {
45
+ d: true;
46
+ }
47
+
24
48
<===>
25
49
================================================================================
26
50
<===> through_import/input.scss
You can’t perform that action at this time.
0 commit comments