spritesheet-templates
Advanced tools
Comparing version 10.2.4 to 10.3.0
# spritesheet-templates changelog | ||
10.3.0 - Updated LESS template to use proper `e` function for using quoteless strings instead of JS | ||
10.2.4 - Upgraded to underscore.string@3.3.0 to fix npm vulnerability warning | ||
@@ -3,0 +5,0 @@ |
{ | ||
"name": "spritesheet-templates", | ||
"description": "Convert spritesheet data into CSS or CSS pre-processor data", | ||
"version": "10.2.4", | ||
"version": "10.3.0", | ||
"homepage": "https://github.com/twolfson/spritesheet-templates", | ||
@@ -45,3 +45,3 @@ "author": { | ||
"jshint": "~2.5.11", | ||
"less": "~1.5.1", | ||
"less": "~3.9.0", | ||
"mocha": "~1.14.0", | ||
@@ -48,0 +48,0 @@ "nine-track": "~3.0.1", |
@@ -23,5 +23,6 @@ var assert = require('assert'); | ||
// Render the LESS, assert no errors, and valid CSS | ||
less.render(lessStr, function (err, css) { | ||
less.render(lessStr, function (err, result) { | ||
// Verify there are no braces in the CSS (array string coercion) | ||
assert.strictEqual(err, null); | ||
var css = result.css; | ||
assert.notEqual(css, ''); | ||
@@ -28,0 +29,0 @@ assert.strictEqual(css.indexOf(']'), -1); |
@@ -33,5 +33,6 @@ var assert = require('assert'); | ||
// Render the LESS, assert no errors, and valid CSS | ||
less.render(lessStr, function (err, css) { | ||
less.render(lessStr, function (err, result) { | ||
// Verify there are no braces in the CSS (array string coercion) | ||
assert.strictEqual(err, null); | ||
var css = result.css; | ||
assert.notEqual(css, ''); | ||
@@ -38,0 +39,0 @@ assert.strictEqual(css.indexOf(']'), -1); |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
2550
288058