File tree 3 files changed +19
-1
lines changed
3 files changed +19
-1
lines changed Original file line number Diff line number Diff line change 63
63
"chalk" : " ^2.4.2" ,
64
64
"debug" : " ^4.1.1" ,
65
65
"fs-extra" : " ^8.0.0" ,
66
+ "glob" : " ^7.1.6" ,
66
67
"yargs" : " ^13.2.2"
67
68
},
68
69
"volta" : {
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ import {
18
18
} from "@css-blocks/core" ;
19
19
import chalk = require( "chalk" ) ;
20
20
import fse = require( "fs-extra" ) ;
21
+ import glob = require( "glob" ) ;
21
22
import path = require( "path" ) ;
22
23
import yargs = require( "yargs" ) ;
23
24
@@ -179,7 +180,17 @@ export class CLI {
179
180
}
180
181
let factory = new BlockFactory ( blockOptions ) ;
181
182
let errorCount = 0 ;
183
+ let resolvedBlockFiles = new Set < string > ( ) ;
182
184
for ( let blockFile of blockFiles ) {
185
+ if ( fse . existsSync ( blockFile ) && fse . statSync ( blockFile ) . isDirectory ( ) ) {
186
+ for ( let discoveredFile of glob . sync ( "**/*.block.*" , { cwd : blockFile } ) ) {
187
+ resolvedBlockFiles . add ( `${ blockFile } /${ discoveredFile } ` ) ;
188
+ }
189
+ } else {
190
+ resolvedBlockFiles . add ( blockFile ) ;
191
+ }
192
+ }
193
+ for ( let blockFile of resolvedBlockFiles ) {
183
194
let blockFileRelative = path . relative ( process . cwd ( ) , path . resolve ( blockFile ) ) ;
184
195
try {
185
196
if ( importer ) {
@@ -199,7 +210,7 @@ export class CLI {
199
210
}
200
211
}
201
212
if ( errorCount ) {
202
- this . println ( `Found ${ this . chalk . redBright ( `${ errorCount } error${ errorCount > 1 ? "s" : "" } ` ) } in ${ blockFiles . length } file${ blockFiles . length > 1 ? "s" : "" } .` ) ;
213
+ this . println ( `Found ${ this . chalk . redBright ( `${ errorCount } error${ errorCount > 1 ? "s" : "" } ` ) } in ${ resolvedBlockFiles . size } file${ resolvedBlockFiles . size > 1 ? "s" : "" } .` ) ;
203
214
}
204
215
this . exit ( errorCount ) ;
205
216
}
Original file line number Diff line number Diff line change @@ -26,6 +26,12 @@ describe("validate", () => {
26
26
assert . equal ( cli . output , `ok\t${ relFixture ( "basic/simple.block.css" ) } \n` ) ;
27
27
assert . equal ( cli . exitCode , 0 ) ;
28
28
} ) ;
29
+ it ( "can check syntax for all block files in a directory" , async ( ) => {
30
+ let cli = new CLI ( ) ;
31
+ chdir ( fixture ( ) ) ;
32
+ await cli . run ( [ "validate" , fixture ( "basic" ) ] ) ;
33
+ assert . equal ( cli . exitCode , 6 ) ;
34
+ } ) ;
29
35
it ( "can check syntax for a bad block file" , async ( ) => {
30
36
let cli = new CLI ( ) ;
31
37
await cli . run ( [ "validate" , fixture ( "basic/error.block.css" ) ] ) ;
You can’t perform that action at this time.
0 commit comments