Compile a CSS file with imports into a resolved CSS file without imports.
Compile a CSS file with imports into a resolved CSS file without imports.
--output
or -out
- define the output directory--minify
or -m
- minify the resolved CSS--remove_comments
or -rc
- remove /* comments */
from the resolved CSS--copy
or -c
- copy the resolved CSS output to system clipboard
importaint "C:\GitHub\styling\style.css" --remove_comments
In the original CSS file directory, a new resolved CSS file without /* comments */
is created: C:\GitHub\styling\style_compiled.css
importaint "https://mysite.com/styles/style.css" --minify --copy
In the local directory that you are prompted about:
importaint "https://mysite.com/styles/style.css" -out "C:\MyStyles\StyleA"
In the output directory that you provided (C:\MyStyles\StyleA
)