codeapp icon indicating copy to clipboard operation
codeapp copied to clipboard

sass cannot use options (--watch for ex.)

Open cschoenecker opened this issue 3 years ago • 0 comments

We can install sass via npm and compile with sass input.scss output.css directly in terminal but we cannot use options like sass --watch input.scss output.css when running a script in package.json

{ "scripts": { "compile": "sass input.scss output.css" "compile2": "sass --watch input.scss output.css" } } => npm run compile2 is not working

cschoenecker avatar May 11 '22 16:05 cschoenecker