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

gulp-livescript

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-livescript - npm Package Compare versions

Comparing version 1.2.0 to 1.2.1

8

CHANGELOG.md

@@ -0,1 +1,9 @@

### 1.2.1 (2014-10-17)
#### Bug Fixes
* **index.js:** require syntax for LiveScript 1.2.0 ([0f3d00f6](https://github.com/tomchentw/gulp-livescript/commit/0f3d00f685d2365c15beca5cae52f7cb24616c4d))
## 1.2.0 (2014-10-13)

@@ -2,0 +10,0 @@

8

lib/index.js

@@ -1,2 +0,2 @@

// Generated by LiveScript 1.3.0
// Generated by LiveScript 1.2.0
var through2, LiveScript, gutil;

@@ -9,3 +9,3 @@ through2 = require('through2');

function modifyLS(file, enc, done){
var error, input, t, json;
var error, fileExtension, input, t, json;
if (file.isNull()) {

@@ -18,2 +18,3 @@ return done(null, file);

try {
fileExtension = ".js";
input = file.contents.toString("utf8");

@@ -37,5 +38,6 @@ t = {

t.output = JSON.stringify(t.result, null, 2) + "\n";
fileExtension = ".json";
}
file.contents = new Buffer(t.output);
file.path = gutil.replaceExtension(file.path, ".js");
file.path = gutil.replaceExtension(file.path, fileExtension);
} catch (e$) {

@@ -42,0 +44,0 @@ error = e$;

{
"name": "gulp-livescript",
"version": "1.2.0",
"version": "1.2.1",
"description": "Compile LiveScript to JavaScript for Gulp",

@@ -35,13 +35,13 @@ "main": "lib/index.js",

"dependencies": {
"gulp-util": "*",
"LiveScript": "^1.2.0",
"through2": "^0.5.1"
"gulp-util": "~3.0.1",
"LiveScript": "~1.2.0",
"through2": "~0.6.3"
},
"devDependencies": {
"codeclimate-test-reporter": "0.0.4",
"istanbul": "^0.3.2",
"mocha": "^1.21.4",
"should": "^4.0.4",
"tomchentw-npm-dev": "^1.0.0"
"codeclimate-test-reporter": "~0.0.4",
"istanbul": "~0.3.2",
"mocha": "~1.21.5",
"should": "~4.0.4",
"tomchentw-npm-dev": "~1.0.0"
}
}

@@ -1,2 +0,2 @@

# gulp-livescript [![Travis CI][travis-image]][travis-url] [![Quality][codeclimate-image]][codeclimate-url] [![Coverage][coveralls-image]][coveralls-url] [![Dependencies][gemnasium-image]][gemnasium-url] [![Gitter][gitter-image]][gitter-url]
# gulp-livescript [![Travis CI][travis-image]][travis-url] [![Quality][codeclimate-image]][codeclimate-url] [![Coverage][codeclimate-coverage-image]][codeclimate-coverage-url] [![Dependencies][gemnasium-image]][gemnasium-url] [![Gitter][gitter-image]][gitter-url]
> Compile LiveScript to JavaScript for Gulp

@@ -92,4 +92,4 @@

[codeclimate-url]: https://codeclimate.com/github/tomchentw/gulp-livescript
[coveralls-image]: https://img.shields.io/coveralls/tomchentw/gulp-livescript.svg?style=flat-square
[coveralls-url]: https://coveralls.io/r/tomchentw/gulp-livescript
[codeclimate-coverage-image]: https://img.shields.io/codeclimate/coverage/github/tomchentw/gulp-livescript.svg?style=flat-square
[codeclimate-coverage-url]: https://codeclimate.com/github/tomchentw/gulp-livescript
[gemnasium-image]: https://img.shields.io/gemnasium/tomchentw/gulp-livescript.svg?style=flat-square

@@ -96,0 +96,0 @@ [gemnasium-url]: https://gemnasium.com/tomchentw/gulp-livescript

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