This repository was archived by the owner on Dec 11, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +544
-78
lines changed Expand file tree Collapse file tree 6 files changed +544
-78
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,6 @@ style.css
6
6
# Folders
7
7
bower_components /
8
8
node_modules /
9
- external /
10
9
icons /svg-min /
11
10
.sass-cache /
12
11
dist /
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ var config = {
44
44
}
45
45
} ,
46
46
csslint : {
47
- src : [ "dist/css/* .css" ]
47
+ src : [ "dist/css/chassis.lint.css" , "dist/css/chassis.lint .css" ]
48
48
} ,
49
49
jscs : {
50
50
all : [ "*.js" , "performance/**/*.js" ]
@@ -55,7 +55,23 @@ var config = {
55
55
jshintrc : ".jshintrc"
56
56
}
57
57
} ,
58
+ npmcopy : {
59
+ options : {
60
+ destPrefix : "external"
61
+ } ,
62
+ normalize : {
63
+ files : {
64
+
65
+ // TODO: Right now the licensefile is not included in the npm package uncomment
66
+ // this once https://github.com/necolas/normalize.css/issues/430 is fixed
67
+ //"normalize.css/LICENSE.md": "normalize.css/LICENSE.md",
68
+ "normalize.css/normalize.scss" : "normalize.css/normalize.css"
69
+ }
70
+ }
71
+ } ,
58
72
sass : {
73
+
74
+ // This is the same as lint below execpt including normalize.css
59
75
dist : {
60
76
options : {
61
77
sourceMap : true ,
@@ -66,6 +82,19 @@ var config = {
66
82
files : {
67
83
"dist/css/chassis.css" : "scss/style.scss"
68
84
}
85
+ } ,
86
+
87
+ // This is everything execpt normalize.css which wont pass our lint settings
88
+ lint : {
89
+ options : {
90
+ sourceMap : true ,
91
+
92
+ // This actually does nested until libsass updates to support expanded
93
+ outputStyle : "expanded"
94
+ } ,
95
+ files : {
96
+ "dist/css/chassis.lint.css" : "scss/lint.scss"
97
+ }
69
98
}
70
99
} ,
71
100
You can’t perform that action at this time.
0 commit comments