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

Compile LiveScript to JavaScript for Gulp

  • 0.1.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
34
decreased by-62.64%
Maintainers
1
Weekly downloads
 
Created
Source

gulp-livescript

Distributed via

NPM version

Compile LiveScript to JavaScript for Gulp

Build Status Code Climate Dependency Status

Information

Packagegulp-livescript
DescriptionCompile LiveScript to JavaScript for Gulp
Node Version>= 0.9
Gulp Version>= 3.5.0

Usage

var gulpLiveScript = require('gulp-livescript');

gulp.task('ls', function() {
  gulp.src('./src/*.ls')
    .pipe(gulpLiveScript({bare: true}).on('error', gutil.log))
    .pipe(gulp.dest('./public/'));
});

Error Handling

gulp-livescript will emit an error for cases such as invalid LiveScript syntax. If uncaught, the error will crash gulp.

You will need to attach a listener (i.e. .on('error')) for the error event emitted by gulp-livescript. Since .on(...) returns this, you can compact it as inline code (See Usage).

Options

The options object supports the same options as the standard LiveScript compiler.

Contributing

devDependency Status Bitdeli Badge

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

Credits

Keywords

FAQs

Package last updated on 15 Feb 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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