file_path stringlengths 3 280 | file_language stringclasses 66
values | content stringlengths 1 1.04M | repo_name stringlengths 5 92 | repo_stars int64 0 154k | repo_description stringlengths 0 402 | repo_primary_language stringclasses 108
values | developer_username stringlengths 1 25 | developer_name stringlengths 0 30 | developer_company stringlengths 0 82 |
|---|---|---|---|---|---|---|---|---|---|
crates/swc_css_modules/tests/fixture/modules/order/order-2.css | CSS | .order-2 {
color: blue;
}
.order-2-2 {
color: azure;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/prefer-relative/package/one.compiled.css | CSS | .__local__imported-relative {
display: block;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/prefer-relative/package/one.css | CSS | .imported-relative {
display: block;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/prefer-relative/source.compiled.css | CSS | .__local__one {
color: yellow;
}
.__local__two {
color: yellow;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/prefer-relative/source.css | CSS | .one {
color: yellow;
composes: imported-relative from 'package/one.css';
}
.two {
color: yellow;
composes: imported-relative from 'package/two.css';
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/pure/pure.compiled.css | CSS | .__local__foo {
color: red;
}
h1 .__local__foo-1 {
color: green;
}
.__local__foo-2 h1 {
color: blue;
}
.__local__foo-3 h1 .__local__foo-4 {
color: red;
}
#__local__foo-5 {
color: red;
}
h1 #__local__foo-6 {
color: green;
}
#__local__foo-7 h1 {
color: blue;
}
#__local__foo-8 h1 #__local__foo-9 {
color: r... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/pure/pure.css | CSS | .foo {
color: red;
}
h1 .foo-1 {
color: green;
}
.foo-2 h1 {
color: blue;
}
.foo-3 h1 .foo-4 {
color: red;
}
#foo-5 {
color: red;
}
h1 #foo-6 {
color: green;
}
#foo-7 h1 {
color: blue;
}
#foo-8 h1 #foo-9 {
color: red;
}
.bar-1 :global(.bar) .bar-2 {
color: white;
}
.baz-3 :local(.baz) .bar-4 ... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/animation/source.compiled.css | CSS | a {
animation: __local__slide-right 300ms forwards ease-out, __local__fade-in 300ms forwards ease-out;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/animation/source.css | CSS | a {
animation: slide-right 300ms forwards ease-out, fade-in 300ms forwards ease-out;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/class-names/source.compiled.css | CSS | .__local__class-1,
.__local__class-10 .__local__bar-1 {
color: green;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/class-names/source.css | CSS | .class-1, .class-10 .bar-1 {
color: green;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/comment-in-local/source.compiled.css | CSS | .__local__c1.__local__c3 {
background: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/comment-in-local/source.css | CSS | :local(.c1/*.c2*/.c3) { background: red; }
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/comments/source.compiled.css | CSS | .__local__bg {
background-image: url(./img.png);
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/comments/source.css | CSS | /*
* a ' above
*/
.bg {
background-image: url(./img.png);
}
/*
* a ' below
*/
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/composes-1/file.compiled.css | CSS | .__local__c2 {
color: red;
}
.__local__c4 {
color: blue;
}
.__local__test {
c: d;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/composes-1/file.css | CSS | :local(.c2) {
color: red;
}
:local(.c4) {
color: blue;
}
.test{
c: d
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/composes-1/source.compiled.css | CSS | .__local__c1 {
b: 1;
}
.__local__c3 {
b: 3;
}
.__local__c5 {
b: 5;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/composes-1/source.css | CSS | :local(.c1) { composes: c2 from "./file.css"; b: 1; }
:local(.c3) { composes: c1; b: 3; }
:local(.c5) { composes: c2 c4 from "./file.css"; b: 5; }
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/composes-2/file.compiled.css | CSS | .__local__c-2 {
color: red;
}
.__local__c4 {
color: blue;
}
.__local__test {
c: d;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/composes-2/file.css | CSS | :local(.c-2) {
color: red;
}
:local(.c4) {
color: blue;
}
.test{
c: d
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/composes-2/source.compiled.css | CSS | .__local__c1 {
b: 1;
}
.__local__c3 {
b: 3;
}
.__local__c5 {
b: 5;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/composes-2/source.css | CSS | :local(.c1) { composes: c-2 from "./file.css"; b: 1; }
:local(.c3) { composes: c1; b: 3; }
:local(.c5) { composes: c-2 c4 from "./file.css"; b: 5; }
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/composes-multiple/file1.compiled.css | CSS | .__local__def1 {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/composes-multiple/file1.css | CSS | :local(.def1) {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/composes-multiple/file2.compiled.css | CSS | .__local__def2 {
color: blue;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/composes-multiple/file2.css | CSS | :local(.def2) {
color: blue;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/composes-multiple/source.compiled.css | CSS | .__local__abc {}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/composes-multiple/source.css | CSS | :local(.abc) {
composes: def1 from "./file1.css";
composes: def2 from "./file2.css";
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/composes-with-importing/file.compiled.css | CSS | .__local__def {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/composes-with-importing/file.css | CSS | :local(.def) {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/composes-with-importing/source.compiled.css | CSS | .__local__abc {}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/composes-with-importing/source.css | CSS | :local(.abc) {
composes: def from "./file.css";
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/composes/source.compiled.css | CSS | .__local__c1 {
a: 1;
}
.__local__c2 {
b: 1;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/composes/source.css | CSS | :local(.c1) { a: 1; }
:local(.c2) { composes: c1; b: 1; }
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/declaration-value/source.compiled.css | CSS | @value blue: red;
.__local__a {
border: 1px solid blue;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/declaration-value/source.css | CSS | @value blue: red;
.a {
border: 1px solid blue;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/issue-589/source.compiled.css | CSS | body:before {
content: '';
background: url('!!file-loader?esModule=false!./img.png');
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/issue-589/source.css | CSS | body:before {
content: '';
background: url('!!file-loader?esModule=false!./img.png');
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/keyframes-and-animation/source.compiled.css | CSS | .__local__a {
color: green;
}
@keyframes __local__bounce {
0% {
transform: translateY(-100%);
opacity: 0;
}
5% {
transform: translateY(-100%);
opacity: 0;
}
}
@-webkit-keyframes __local__bounce2 {
0% {
transform: translateY(-100%);
opacity: 0;
}
5% {
transform: translateY(-10... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/keyframes-and-animation/source.css | CSS | .a {
color: green;
}
@keyframes bounce {
0% {
transform: translateY(-100%);
opacity: 0;
}
5% {
transform: translateY(-100%);
opacity: 0;
}
}
@-webkit-keyframes bounce2 {
0% {
transform: translateY(-100%);
opacity: 0;
}
5% {
transform: translateY(-100%);
opacity: 0;
}
}
.bounce {
animation-n... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/leak-scope/source.compiled.css | CSS | .__local__a {
color: green;
animation: __local__a;
}
@keyframes __local__b {
0% {
left: 10px;
}
100% {
left: 20px;
}
}
.__local__b {
animation: __local__b;
}
@keyframes c {
0% {
left: 10px;
}
100% {
left: 20px;
}
}
.__local__c {
animation: __local__c1;
animation: __local__c2, _... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/leak-scope/source.css | CSS | .a {
color: green;
animation: a;
}
@keyframes b {
0% { left: 10px; }
100% { left: 20px; }
}
.b {
animation: b;
}
@keyframes :global(c) {
0% { left: 10px; }
100% { left: 20px; }
}
.c {
animation: c1;
animation: c2, c3, c4;
}
@keyframes :global(d) {
0% { left: 10px; }
100% { left: 20px; }
}
:global .d1 {... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/local-2/source.compiled.css | CSS | .__local__className {
background: red;
}
#__local__someId {
background: green;
}
.__local__className .__local__subClass {
color: green;
}
#__local__someId .__local__subClass {
color: blue;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/local-2/source.css | CSS | :local(.className) { background: red; }
:local(#someId) { background: green; }
:local(.className .subClass) { color: green; }
:local(#someId .subClass) { color: blue; }
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/local-and-composes/source.compiled.css | CSS | .__local__abc {
color: red;
}
.__local__def {
background: green;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/local-and-composes/source.css | CSS | :local(.abc) {
color: red;
}
:local(.def) {
composes: abc;
background: green;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/local-with-string/source.compiled.css | CSS | .__local__c1[data-attr=".c2)]'"]:not(.__local__c3):not(.__local__c4) {
background: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/local-with-string/source.css | CSS | :local(.c1[data-attr=".c2)]'"]:not(.c3):not(.c4)) {
background: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/local/source.compiled.css | CSS | .__local__abc .__local__def {
color: red;
}
.__local__ghi .__local__jkl {
color: blue;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/local/source.css | CSS | .abc :local(.def) {
color: red;
}
:local .ghi .jkl {
color: blue;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/media-2/file.compiled.css | CSS | @value small: (max-width: 599px);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/media-2/file.css | CSS | @value small: (max-width: 599px);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/media-2/source.compiled.css | CSS | @value small from './file.css';
@media small {
.__local__header {
box-shadow: 0 0 4px #1F4F7F;
}
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/media-2/source.css | CSS | @value small from './file.css';
@media small {
.header {
box-shadow: 0 0 4px #1F4F7F;
}
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/media/source.compiled.css | CSS | @value small: (max-width: 599px);
@media small {
.__local__header {
box-shadow: 0 0 4px #1F4F7F;
}
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/media/source.css | CSS | @value small: (max-width: 599px);
@media small {
.header {
box-shadow: 0 0 4px #1F4F7F;
}
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/mode-switching/source.compiled.css | CSS | .__local__c1 .__local__c2 .__local__c3 .c4 .__local__c5,
.__local__c6 .__local__c7 {
background: red;
}
.__local__c8 {
background: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/mode-switching/source.css | CSS | .c1 :local .c2 .c3 :global .c4 :local .c5, .c6 :local .c7 { background: red; }
.c8 { background: red; }
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/simple/source.compiled.css | CSS | .__local__a .__local__b,
.__local__c .__local__d,
#__local__id {
color: green;
font-size: 1.5pt;
}
a[href="#b.c"].__local__x.__local__y {
color: green;
font-size: 1.5pt;
}
@keyframes __local__z {
2.5% {
color: green;
}
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/simple/source.css | CSS | .a .b, .c .d, #id {
color: green;
font-size: 1.5pt;
}
a[href="#b.c"].x.y {
color: green;
font-size: 1.5pt;
}
@keyframes z {
2.5% {color: green;}
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/urls/source.compiled.css | CSS | .__local__a {
background: url(./img.png);
background: url("./img.png");
background: url("./img img.png");
background: url('./img img.png');
background: url('./img.png');
background: url("./img.png#?iefix");
background: url("#hash");
background: url("#");
background: url(data:image/png;base64,AAA);
b... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/tests-cases/urls/source.css | CSS | .a {
background: url(./img.png);
background: url("./img.png");
background: url("./img img.png");
background: url('./img img.png');
background: url('./img.png');
background: url("./img.png#?iefix");
background: url("#hash");
background: url("#");
background: url(data:image/png;base64,AAA);
background: url(http... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/unresolved/source.compiled.css | CSS | @value foo from './unresolved.css';
.__local__className {
color: foo;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/unresolved/source.css | CSS | @value foo from './unresolved.css';
.className {
color: foo;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/url/shared.compiled.css | CSS | @value v-url-other: url('./img.png');
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/url/shared.css | CSS | @value v-url-other: url('./img.png');
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/url/source.compiled.css | CSS | @value v-url: url('./img.png');
@value v-url-other from './shared.css';
a {
background: v-url;
}
body {
background: v-url-other;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/url/source.css | CSS | @value v-url: url('./img.png');
@value v-url-other from './shared.css';
a {
background: v-url;
}
body {
background: v-url-other;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/nested-import/imported.compiled.css | CSS | .__local__bar {
color: blue;
color: rgb(0 0 100% / 90%);
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/nested-import/imported.css | CSS | .bar {
color: blue;
color: rgb(0 0 100% / 90%);
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/nested-import/other-imported.compiled.css | CSS | .__local__baz {
color: green;
color: rgb(0 0 100% / 90%);
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/nested-import/other-imported.css | CSS | .baz {
color: green;
color: rgb(0 0 100% / 90%);
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/nested-import/source.compiled.css | CSS | @import './imported.css';
@import './other-imported.css';
.__local__foo {
color: red;
color: rgb(0 0 100% / 90%);
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/nested-import/source.css | CSS | @import './imported.css';
@import './other-imported.css';
.foo {
color: red;
color: rgb(0 0 100% / 90%);
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/other-loader-query.compiled.css | CSS | .__local__example {
background-image: url('./url/image.svg?color=%23BAAFDB%3F#foo');
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/other-loader-query.css | CSS | .example {
background-image: url('./url/image.svg?color=%23BAAFDB%3F#foo');
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/postcss-present-env/source.compiled.css | CSS | @custom-media --viewport-medium (width <= 50rem);
@custom-selector :--heading h1, h2, h3, h4, h5, h6;
:root {
--fontSize: 1rem;
--mainColor: #12345678;
--secondaryColor: lab(32.5 38.5 -47.6 / 90%);
}
html {
overflow: hidden auto;
}
@media (--viewport-medium) {
body {
color: var(--mainColor);
font-fami... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/postcss-present-env/source.css | CSS | @custom-media --viewport-medium (width <= 50rem);
@custom-selector :--heading h1, h2, h3, h4, h5, h6;
:root {
--fontSize: 1rem;
--mainColor: #12345678;
--secondaryColor: lab(32.5 38.5 -47.6 / 90%);
}
html {
overflow: hidden auto;
}
@media (--viewport-medium) {
body {
color: var(--mainColor);
font-f... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/simple-1.compiled.css | CSS | .__local__some-class {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/simple-1.css | CSS | .some-class {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/simple.compiled.css | CSS | .__local__some-class {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/simple.css | CSS | .some-class {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/source-map/basic.compiled.css | CSS | @import "./nested/nested.css";
.__local__class {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/source-map/basic.css | CSS | @import "./nested/nested.css";
.class {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/source-map/basic.postcss.compiled.css | CSS | @import "./nested/nested.postcss.css";
@custom-media --viewport-medium (width <= 50rem);
@custom-selector :--heading h1, h2, h3, h4, h5, h6;
:root {
--fontSize: 1rem;
--mainColor: #12345678;
--secondaryColor: lab(32.5 38.5 -47.6 / 90%);
}
html {
overflow: hidden auto;
}
@media (--viewport-medium) {
body {
... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/source-map/basic.postcss.css | CSS | @import "./nested/nested.postcss.css";
@custom-media --viewport-medium (width <= 50rem);
@custom-selector :--heading h1, h2, h3, h4, h5, h6;
:root {
--fontSize: 1rem;
--mainColor: #12345678;
--secondaryColor: lab(32.5 38.5 -47.6 / 90%);
}
html {
overflow: hidden auto;
}
@media (--viewport-medium) {
body {... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/source-map/nested/nested.compiled.css | CSS | .__local__nested {
color: blue;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/source-map/nested/nested.css | CSS | .nested {
color: blue;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/source-map/nested/nested.postcss.compiled.css | CSS | .__local__nested {
color: blue;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/source-map/nested/nested.postcss.css | CSS | .nested {
color: blue;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/source-map/with-query.compiled.css | CSS | .__local__foo {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/source-map/with-query.css | CSS | .foo {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/url/absolute-url.compiled.css | CSS | a {
background: url("https://raw.githubusercontent.com/webpack-contrib/css-loader/master/test/fixtures/url/img.png");
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/url/absolute-url.css | CSS | a {
background: url("https://raw.githubusercontent.com/webpack-contrib/css-loader/master/test/fixtures/url/img.png");
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/url/false-alias.compiled.css | CSS | .__local__class {
background-image: url(/logo.png);
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/url/false-alias.css | CSS | .class {
background-image: url(/logo.png);
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/url/ignore-plugin.compiled.css | CSS | div {
background: url("/assets/unknown.png");
}
div {
background: url("./assets/unknown.png");
}
div {
background: url("assets/unknown.png");
}
div {
background: url("/unknwon.png");
}
div {
background: url("./unknwon.png");
}
div {
background: url("unknwon.png");
}
div {
background: url("/nested/img.png"... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/url/ignore-plugin.css | CSS | /*
Unknown
*/
div {
background: url("/assets/unknown.png");
}
div {
background: url("./assets/unknown.png");
}
div {
background: url("assets/unknown.png");
}
div {
background: url("/unknwon.png");
}
div {
background: url("./unknwon.png");
}
div {
background: url("unknwon.png");
}
/*
K... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/url/imported.compiled.css | CSS | .__local__bar {
background: url('./img-from-imported.png');
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.