Skip to content

Commit c6b7454

Browse files
committed
chore: update esbuild
1 parent 52a1e8d commit c6b7454

File tree

3 files changed

+1559
-9
lines changed

3 files changed

+1559
-9
lines changed

__tests__/__snapshots__/index.test.ts.snap

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,38 @@ exports[`less-loader > works with module.less 1`] = `
3434
".o{display:block}.o{color:#000}.button{color:gray}.foo .l{color:red}.foo .l{color:green}
3535
"
3636
`;
37+
38+
exports[`less-loader builds successful 1`] = `
39+
"#style-5-css{position:-webkit-sticky;position:sticky;background:url(data:image/png;base64,iVBORw0KGgoAAAAASURBVA==) no-repeat}#style-4-css{display:none}.style-3-less{color:red}.style-2-less{color:red;background:url(data:image/jpeg;base64,/9j/) no-repeat}.index-style{transition:.2s all cubic-bezier(.075,.82,.165,1)}body{background:#5d1db2}body article{width:100px}body article:first-child{width:200px}
40+
"
41+
`;
42+
43+
exports[`less-loader builds successful custom filter 1`] = `
44+
"#style-5-css{position:-webkit-sticky;position:sticky;background:url(data:image/png;base64,iVBORw0KGgoAAAAASURBVA==) no-repeat}#style-4-css{display:none}.style-3-less{color:red}.style-2-less{color:red;background:url(data:image/jpeg;base64,/9j/) no-repeat}body{background:#5d1db2}body article{width:100px}body article:first-child{width:200px}
45+
"
46+
`;
47+
48+
exports[`less-loader builds successful with less as entrypoint 1`] = `
49+
"#style-5-css{position:-webkit-sticky;position:sticky;background:url(data:image/png;base64,iVBORw0KGgoAAAAASURBVA==) no-repeat}#style-4-css{display:none}.style-3-less{color:red}.style-2-less{color:red;background:url(data:image/jpeg;base64,/9j/) no-repeat}.index-style{transition:.2s all cubic-bezier(.075,.82,.165,1)}body{background:#5d1db2}body article{width:100px}body article:first-child{width:200px}
50+
"
51+
`;
52+
53+
exports[`less-loader builds imported .less files 1`] = `
54+
"#style-5-css{position:-webkit-sticky;position:sticky;background:url(data:image/png;base64,iVBORw0KGgoAAAAASURBVA==) no-repeat}#style-4-css{display:none}.style-3-less{color:red}.style-2-less{color:red;background:url(data:image/jpeg;base64,/9j/) no-repeat}.index-style{transition:.2s all cubic-bezier(.075,.82,.165,1)}body{background:#5d1db2}body article{width:100px}body article:first-child{width:200px}
55+
"
56+
`;
57+
58+
exports[`less-loader builds imported ._less_ files 1`] = `
59+
"#style-5-css{position:-webkit-sticky;position:sticky;background:url(data:image/png;base64,iVBORw0KGgoAAAAASURBVA==) no-repeat}#style-4-css{display:none}.style-3-less{color:red}.style-2-less{color:red;background:url(data:image/jpeg;base64,/9j/) no-repeat}body{background:#5d1db2}body article{width:100px}body article:first-child{width:200px}
60+
"
61+
`;
62+
63+
exports[`less-loader builds imported .css files 1`] = `
64+
"#style-5-css{position:-webkit-sticky;position:sticky;background:url(data:image/png;base64,iVBORw0KGgoAAAAASURBVA==) no-repeat}#style-4-css{display:none}.style-3-less{color:red}.style-2-less{color:red;background:url(data:image/jpeg;base64,/9j/) no-repeat}.index-style{transition:.2s all cubic-bezier(.075,.82,.165,1)}body{background:#5d1db2}body article{width:100px}body article:first-child{width:200px}
65+
"
66+
`;
67+
68+
exports[`less-loader works with module.less 1`] = `
69+
".o{display:block}.o{color:#000}.button{color:gray}.foo .l{color:red}.foo .l{color:green}
70+
"
71+
`;

0 commit comments

Comments
 (0)