We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f4192a commit a5c197eCopy full SHA for a5c197e
1 file changed
test/cli.test.ts
@@ -16,6 +16,7 @@ const run = (recipe: string) => {
16
'input'
17
);
18
const inputDest = path.resolve(cache, recipe);
19
+ console.log({ originalInput, inputDest });
20
fs.copySync(originalInput, inputDest);
21
22
// Run the command
@@ -28,6 +29,8 @@ const run = (recipe: string) => {
28
29
30
const inputGlob = path.join(inputDest, '**', '*.css');
31
const command = `${bin} -t ${transform} '${inputGlob}'`;
32
+
33
+ console.log({ transform, inputGlob, command });
34
try {
35
execSync(command);
36
} catch (err) {
@@ -56,7 +59,7 @@ const run = (recipe: string) => {
56
59
};
57
60
58
61
const recipes = fs.readdirSync(path.resolve(__dirname, '..', 'recipes'));
-
62
+console.log({ recipes });
63
describe('cli', () => {
64
beforeAll(() => {
65
fs.removeSync(cache);
0 commit comments