Socket
Socket
Sign inDemoInstall

gulp-blaze

Package Overview
Dependencies
5
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    gulp-blaze

Blaze compiler simplifies building security rules for Firebase.


Version published
Weekly downloads
5
increased by66.67%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

gulp-blaze

Gulp wrapper for firebase's blaze compiler

Usage

npm install --save gulp-blaze
var gulp = require('gulp'),
    blaze = require('gulp-blaze');

gulp.task('compile:rules', function () {
  gulp.src('path/to/rules.yaml')
    .pipe(blaze({
      debug: true
    }))
    .pipe(gulp.dest('compiled/rules.json'));
});

Development

Notes:

  • The source code is written in EcmaScript 6 and resides in src/ directory.
  • Run npm run compile after installing dependencies to compile build.
  • Run npm test to run tests.
  • Install pre-commit-hook by running ln -s ../../pre-commit-hook .git/hooks/pre-commit && chmod +x .git/hooks/pre-commit to automate builds.

Keywords

FAQs

Last updated on 19 Oct 2014

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc