mirror of
https://github.com/Shopify/liquid.git
synced 2026-09-17 09:50:48 -07:00
Set up Grunt
Fixing up Grunt file to watch for directories Exclude node modules folder from Jekyll built site
This commit is contained in:
+7
@@ -0,0 +1,7 @@
|
||||
@import url(foo.css);
|
||||
@import url("bar.css");
|
||||
@import url('baz.css');
|
||||
@import "qux.css";
|
||||
@import 'quux.css';
|
||||
@import url("corge.css") print,
|
||||
screen and ( min-width: 999px ) ;
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
@import "foo.css";
|
||||
|
||||
.foo {
|
||||
display: block;
|
||||
}
|
||||
|
||||
@import "bar.css";
|
||||
|
||||
.bar {
|
||||
display: block;
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
@keyframes "foo" {
|
||||
from {
|
||||
top: 0px;
|
||||
}
|
||||
|
||||
to {
|
||||
top: 100px;
|
||||
}
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
@media /* foo */ ( min-width: 99px ) and
|
||||
( max-width: 999px ) {
|
||||
.at-media-params {
|
||||
display: auto;
|
||||
}
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
@namespace url(foo.css);
|
||||
@namespace url("bar.css");
|
||||
@namespace url('baz.css');
|
||||
@namespace "qux.css";
|
||||
@namespace 'quux.css';
|
||||
@namespace corge url("corge.css");
|
||||
+20
@@ -0,0 +1,20 @@
|
||||
@import "foo.css";
|
||||
|
||||
@media screen {
|
||||
.bar {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
@media
|
||||
(min-width: 99px) {
|
||||
.baz {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
@font-face
|
||||
{
|
||||
font-family: "Qux";
|
||||
src: url("qux.woff") format("woff");
|
||||
}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
@supports (color: rgb(255, 255, 255)) and (margin: 0 0 0 0) {
|
||||
.foo {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
@supports (top: 0px) or (line-height: 0.9) {
|
||||
.bar {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
.foo {
|
||||
width: calc( 100vw + 12px);
|
||||
min-width: calc(10em - 10px );
|
||||
max-width: calc( (100vw + 10em / 2) * 12 - 10px );
|
||||
}
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
.foo {
|
||||
border-top-color: rGb(51, 102, 153);
|
||||
border-right-color: hsL(22, 48.245823%, 34.8592227%);
|
||||
border-bottom-color: #aa00EE;
|
||||
border-left-color: rgb(255, 0, 0);
|
||||
border-color: #f0e68c;
|
||||
background-image: linear-gradient(rgb(255, 255, 255),#000000);
|
||||
}
|
||||
|
||||
.bar {
|
||||
border-color: hslA(0, 0%, 50.2%, 0.5);
|
||||
color: rgba(128, 128, 128, 0.5);
|
||||
background-color: rgba(0, 0, 0, 0);
|
||||
}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
/*
|
||||
* This comment will strip!
|
||||
*/
|
||||
|
||||
/*!
|
||||
* This comment will *NOT* strip.
|
||||
*/
|
||||
|
||||
.foo {
|
||||
display: block;
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
.foo {
|
||||
content: '0em 0.111 rgb(0, 0, 0)';
|
||||
}
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
.foo {
|
||||
line-height: 0.60;
|
||||
transform: rotate(-0.90deg);
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
.duplicate-decl {
|
||||
color: black;
|
||||
color: white;
|
||||
color: black;
|
||||
}
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
.foo,
|
||||
.foo {
|
||||
display: block;
|
||||
}
|
||||
+22
@@ -0,0 +1,22 @@
|
||||
.foo {
|
||||
display: block;
|
||||
}
|
||||
|
||||
@media (min-width: 99px) {
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@supports (margin: 0) {
|
||||
.bar {}
|
||||
}
|
||||
|
||||
@page {
|
||||
/* empty */
|
||||
}
|
||||
|
||||
@keyframes baz {
|
||||
/*! not empty */
|
||||
}
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
.foo {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.bar {
|
||||
;
|
||||
}
|
||||
|
||||
.baz {
|
||||
/* empty */
|
||||
}
|
||||
|
||||
.qux {
|
||||
/*! not empty */
|
||||
}
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
.foo {
|
||||
color: red;;;;;;;;
|
||||
background-color: cyan;
|
||||
}
|
||||
+17
@@ -0,0 +1,17 @@
|
||||
@font-face {
|
||||
font-family: "Foo";
|
||||
src: url("foo.woff") format("woff");
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
font-stretch: normal;
|
||||
unicode-range: U+0-10FFFF;
|
||||
font-variant: normal;
|
||||
font-feature-settings: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Bar";
|
||||
src: url("bar.woff") format("woff");
|
||||
unicode-range: U+000000-10FFFF;
|
||||
font-weight: 400;
|
||||
}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
.foo {
|
||||
font-family: "Hoefler Text", "Constantia", "Georgia", serif;
|
||||
}
|
||||
|
||||
.bar {
|
||||
font-family: "0font", "--font", "-0font", serif;
|
||||
}
|
||||
|
||||
.baz {
|
||||
font-family: 'Glyphicons Halflings', serif;
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
.foo {
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.bar {
|
||||
font-weight: bold;
|
||||
}
|
||||
+18
@@ -0,0 +1,18 @@
|
||||
/*! Special comment */
|
||||
@charset "UTF-8";
|
||||
|
||||
@charset "EUC-JP";
|
||||
|
||||
@import "foo.css";
|
||||
|
||||
.bar {
|
||||
display: block;
|
||||
}
|
||||
|
||||
@charset "Shift_JIS";
|
||||
|
||||
@import "baz.css";
|
||||
|
||||
.qux {
|
||||
display: block;
|
||||
}
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
@keyframes foo {
|
||||
from {
|
||||
top: 0px;
|
||||
}
|
||||
|
||||
50%, to {
|
||||
top: 100px;
|
||||
}
|
||||
|
||||
bar {
|
||||
top: 999px;
|
||||
}
|
||||
|
||||
101% {
|
||||
top: 101px;
|
||||
}
|
||||
|
||||
25%, 75%, -25% {
|
||||
top: 50px;
|
||||
}
|
||||
}
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
.issue11 {
|
||||
transition: 0s;
|
||||
transition: 0ms;
|
||||
}
|
||||
+18
@@ -0,0 +1,18 @@
|
||||
.foo {
|
||||
background-image: url("1.png"),
|
||||
url("2.png"),
|
||||
linear-gradient(
|
||||
to bottom,
|
||||
#000 0%,
|
||||
#fff 100%
|
||||
)
|
||||
;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "f";
|
||||
src: url("f.eot#a") format("embedded-opentype"),
|
||||
url("f.woff") format("woff"),
|
||||
url("f.ttf") format("truetype"),
|
||||
url("f.svg#b") format("svg");
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
.foo
|
||||
.bar
|
||||
.baz
|
||||
{
|
||||
display: auto;
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
@media /* a */ (min-width: 99px) {
|
||||
.issue19 /* b */, #issue19 {
|
||||
display: auto
|
||||
;
|
||||
}
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
.issue3 {
|
||||
border: 1px solid rgb(102, 102, 102);
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
.foo {
|
||||
background-image: url("data:image/svg+xml,<svg version='1.0'></svg>");
|
||||
}
|
||||
|
||||
.bar {
|
||||
background-image: url('data:image/svg+xml,<svg version="1.0"></svg>');
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
.foo {
|
||||
background-image: linear-gradient(rgb(0,128,0)0%,rgb(0,128,0)100%);
|
||||
}
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
@font-face{
|
||||
font-family: "Foo";
|
||||
src: url("foo.woff") format("woff");
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
.foo[att="foo"],
|
||||
.bar[att=bar],
|
||||
.baz[att="baz?"],
|
||||
.qux[att="q u x"] {
|
||||
display: block;
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
.foo {
|
||||
font-family: "ヒラギノ角ゴ Pro W3", serif;
|
||||
}
|
||||
|
||||
.bar[att="ほげ"] {
|
||||
display: block;
|
||||
}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
.foo {
|
||||
margin: 1px 2px 3px 2px;
|
||||
padding: 1px 2px 1px 2px;
|
||||
border-color: #000 #fff #000;
|
||||
border-radius: 1px 1px 1px;
|
||||
border-spacing: 1px 1px;
|
||||
border-style: solid double solid inset;
|
||||
border-width: 1px 1px 1px 1px;
|
||||
background-position: 0 0;
|
||||
-webkit-transform-origin: 0 0;
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
.foo {
|
||||
top: 00010.7px;
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
.foo {
|
||||
display: block;
|
||||
}
|
||||
|
||||
{
|
||||
display: block;
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
[ foo ],
|
||||
[ bar = "bar" ],
|
||||
[ baz *= "baz" ],
|
||||
[ qux ~= 'qu]x'],
|
||||
[quux |= qu\]ux],
|
||||
[corge="corge"][grault] {
|
||||
display: block;
|
||||
}
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
.foo > .bar {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.foo + .baz {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.foo ~ .qux {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.foo .\<quux\> {
|
||||
display: block;
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
.foo:lang(ja-JP),
|
||||
.bar:nth-child(2n + 1),
|
||||
.baz:nth-last-child( -1n - 1),
|
||||
.qux:nth-of-type(odd ),
|
||||
.quux:not( bar ),
|
||||
.corge:not([class^="corge corge-"]) {
|
||||
display: block;
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
.foo {
|
||||
list-style: circle url("foo.png");
|
||||
background-image: url('foo.png');
|
||||
background: url(foo.png) rgb(238, 238, 238) no-repeat fixed;
|
||||
cursor: url("open(parens.cur"), auto;
|
||||
border-image: url(escaped-close\)parens.png) 30 30 repeat;
|
||||
}
|
||||
+26
@@ -0,0 +1,26 @@
|
||||
|
||||
.foo, .bar,
|
||||
|
||||
|
||||
.baz {
|
||||
|
||||
display :
|
||||
block ;
|
||||
}
|
||||
|
||||
@media screen and
|
||||
(
|
||||
min-width : 99px ) {
|
||||
.bar
|
||||
{
|
||||
display
|
||||
: block
|
||||
!important;
|
||||
background-image: url(
|
||||
"bar.png"
|
||||
); }
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
.foo {
|
||||
border: 0px solid red;
|
||||
}
|
||||
Reference in New Issue
Block a user