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

gulp-component-build

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-component-build

gulp plugin for build component.

0.0.5
latest
Source
npm
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

gulp-component-build.

gulp plugin to build component.

Example

var gulp = require('gulp');
var rename = require('gulp-rename');
var component = require('./index');

gulp.task('compile:scripts', function() {
  gulp.src('test/fixtures/success-component/component.json')
    .pipe(component.scripts({ install: true }))
    .pipe(rename('components.js'))
    .pipe(gulp.dest('public/js'));
});

gulp.task('compile:styles', function() {
  gulp.src('test/fixtures/success-component/component.json')
    .pipe(component.styles({ install: true }, function(styles, option) {
      styles.use('styles', require('component-builder-less')({}));
    }))
    .pipe(rename('components.css'))
    .pipe(gulp.dest('public/css'));
});

gulp.task('compile:files', function() {
  gulp.src('test/fixtures/success-component/component.json')
    .pipe(component.files({ install: true }, function(files, option) {
      // add to copy ext.
      build.fns.images.forEach(function(fn) {
        build.use('some-ext1', fn);
        build.use('some-ext2', fn);
      });
    }));
});

gulp.task('default', ['compile:scripts', 'compile:styles']);

api

component.scripts(option, configureFunction) #=> stream.

  • option
    • component/component-build's argument.
  • configureFunction
    • first argument
      • component/component-builder2 instance. can use to adding some plugins if you want.
    • second argument
      • option.

component.styles(option, configureFunction) #=> stream.

  • same to component.scripts

component.files(option, configureFunction) #=> stream.

  • same to component.scripts

Keywords

gulpplugin

FAQs

Package last updated on 10 Oct 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