We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28d376a commit b5b23d7Copy full SHA for b5b23d7
src/lib/ctx.ts
@@ -38,8 +38,8 @@ export default (options: Record<string, string>): Context => {
38
}
39
resolutionOff = options.ignoreResolutions || false;
40
extensionFiles = options.files || ['png', 'jpeg', 'jpg'];
41
- ignoreStripExtension = options.ignoreStripExtensions || false
42
- ignoreFilePattern = options.ignorePattern || []
+ ignoreStripExtension = options.removeExtensions || false
+ ignoreFilePattern = options.ignoreDir || []
43
} catch (error: any) {
44
console.log(`[smartui] Error: ${error.message}`);
45
process.exit();
0 commit comments