nativescript-dev-sass
Advanced tools
Comparing version 1.1.0 to 1.1.1
@@ -0,1 +1,4 @@ | ||
## v1.1.1 | ||
- Fixed regression will follow symlinked directories (#30) via @ludwiktrammer | ||
## v1.1.0 | ||
@@ -2,0 +5,0 @@ - Added support for "~/" in @import paths (resolves to app root) |
@@ -28,5 +28,6 @@ exports.convert = convert; | ||
// -q : Supress log output except on error | ||
// --follow : Follow symlinked directories | ||
// -r : Recursively watch directories or files | ||
// --watch : Watch a directory or file | ||
var nodeArgs = [sassPath, appDir, '--output', appDir, '--output-style', 'compressed', '-q', '--importer', importerPath]; | ||
var nodeArgs = [sassPath, appDir, '--output', appDir, '--output-style', 'compressed', '-q', '--follow', '--importer', importerPath]; | ||
if (options.watch) { | ||
@@ -33,0 +34,0 @@ nodeArgs.push('-r', '--watch'); |
{ | ||
"name": "nativescript-dev-sass", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "SASS CSS pre-processor for NativeScript projects.", | ||
@@ -5,0 +5,0 @@ "scripts": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
14245
152