Skip to content

Commit 9ced9f3

Browse files
committed
fix: compiled v1.1.0
1 parent 6490aae commit 9ced9f3

File tree

8 files changed

+60
-15
lines changed

8 files changed

+60
-15
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,7 @@ yarn-debug.log*
1212
yarn-error.log*
1313

1414
# local env files
15-
.env*.local
15+
.env*.local
16+
17+
# Personal
18+
TO-DO.md

dist/helpers.d.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,15 @@ export declare class ProcessRetriever {
3737
declare const getFilePaths: (dir: string, extensions?: string[]) => string[];
3838
declare const generateAST: (filePath: string) => parser.ParseResult<File> | any;
3939
interface Config {
40+
/**
41+
* Only accept classes that are in the dictionary and number values or directory variables
42+
*/
4043
onlyDictionary?: boolean;
44+
acceptAnyKey?: boolean;
45+
/**
46+
* Accept (value + unit) or any value
47+
*/
48+
acceptAnyValue?: boolean;
4149
units?: "px" | "rem" | "em" | "vh" | "vw" | "vmin" | "vmax" | "%";
4250
extendKeys?: {
4351
[key: string]: {

dist/helpers.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/helpers.js

Lines changed: 16 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/helpers.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)