Skip to content

Commit 7ffeb0f

Browse files
committed
feat: If a directory is passed to the validate cli, discover blocks.
1 parent 87b439d commit 7ffeb0f

File tree

3 files changed

+19
-1
lines changed

3 files changed

+19
-1
lines changed

packages/@css-blocks/cli/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@
6363
"chalk": "^2.4.2",
6464
"debug": "^4.1.1",
6565
"fs-extra": "^8.0.0",
66+
"glob": "^7.1.6",
6667
"yargs": "^13.2.2"
6768
},
6869
"volta": {

packages/@css-blocks/cli/src/index.ts

+12-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ import {
1818
} from "@css-blocks/core";
1919
import chalk = require("chalk");
2020
import fse = require("fs-extra");
21+
import glob = require("glob");
2122
import path = require("path");
2223
import yargs = require("yargs");
2324

@@ -179,7 +180,17 @@ export class CLI {
179180
}
180181
let factory = new BlockFactory(blockOptions);
181182
let errorCount = 0;
183+
let resolvedBlockFiles = new Set<string>();
182184
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) {
183194
let blockFileRelative = path.relative(process.cwd(), path.resolve(blockFile));
184195
try {
185196
if (importer) {
@@ -199,7 +210,7 @@ export class CLI {
199210
}
200211
}
201212
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" : ""}.`);
203214
}
204215
this.exit(errorCount);
205216
}

packages/@css-blocks/cli/test/cli-test.ts

+6
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,12 @@ describe("validate", () => {
2626
assert.equal(cli.output, `ok\t${relFixture("basic/simple.block.css")}\n`);
2727
assert.equal(cli.exitCode, 0);
2828
});
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+
});
2935
it("can check syntax for a bad block file", async () => {
3036
let cli = new CLI();
3137
await cli.run(["validate", fixture("basic/error.block.css")]);

0 commit comments

Comments
 (0)