Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

spritesheet-templates

Package Overview
Dependencies
Maintainers
1
Versions
52
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

spritesheet-templates - npm Package Compare versions

Comparing version 10.2.4 to 10.3.0

2

CHANGELOG.md
# 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 @@

4

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc