New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

eyeglass-dev-testutils

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eyeglass-dev-testutils - npm Package Compare versions

Comparing version

to
1.0.1

6

CHANGELOG.md

@@ -0,1 +1,7 @@

<a name="1.0.1"></a>
## [1.0.1](https://github.com/sass-eyeglass/eyeglass-dev-testutils/compare/v1.0.0...v1.0.1) (2016-01-25)
<a name="1.0.0"></a>

@@ -2,0 +8,0 @@ # [1.0.0](https://github.com/sass-eyeglass/eyeglass-dev-testutils/compare/v0.1.0...v1.0.0) (2015-11-17)

15

lib/testutils.js

@@ -16,3 +16,2 @@ "use strict";

try {
fs.statSync(filePath);
return fs.readFileSync(filePath, encoding);

@@ -122,8 +121,18 @@ }

}
// Eyeglass 0.8.0+
if (options.options) {
return options.options;
}
// Eyeglass <0.8.0
if (typeof options.sassOptions === "function") {
return options.sassOptions();
}
// raw options, pass them into Eyeglass
else {
options = merge({}, this.options, options);
return new this.engines.eyeglass.Eyeglass(options, this.engines.sass).sassOptions();
options = merge({}, this.options, options, {
engines: {
sass: this.engines.sass
}
});
return this.engines.eyeglass(options);
}

@@ -130,0 +139,0 @@ };

4

package.json
{
"name": "eyeglass-dev-testutils",
"version": "1.0.0",
"version": "1.0.1",
"description": "Testing Utilities. For Eyeglass.",

@@ -29,3 +29,3 @@ "license": "Apache-2.0",

"devDependencies": {
"eyeglass": "^0.7.1",
"eyeglass": "^0.8.2",
"eyeglass-dev-eslint": "2.0.0",

@@ -32,0 +32,0 @@ "gulp": "^3.9.0",