A minimal npm package that provides a CLI wrapper around node-sass for compiling SCSS to CSS. Version 0.1.7, last published in 2016. It is essentially a thin script that runs 'node-sass -rw' with hardcoded default paths (assets/scss -> assets/css). There is no active development or maintenance; it is functionally equivalent to using node-sass directly. Not recommended for new projects; prefer 'sass' (Dart Sass) or node-sass directly.
npm install scss-compileNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Installs scss-compile and node-sass globally, creates a sample SCSS file, and runs the compiler in watch mode to output CSS to assets/css.
Use 'sass' package directly: npm install -g sass && sass --watch assets/scss:assets/css
Use the 'sass' package (Dart Sass) which is pure JavaScript and compatible with Node 14+.
Use node-sass directly for one-off builds: node-sass assets/scss/style.scss assets/css/style.css
npm install node-sass in the same project or globally.
Install globally: npm install -g scss-compile, or use npx scss-compile.
Create the directory: mkdir -p assets/scss, or edit package.json to point to your SCSS source directory.