Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

gulp-vtex-render

Package Overview
Dependencies
Maintainers
5
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-vtex-render

Gulp plugin to build VTEX Render apps

latest
Source
npmnpm
Version
0.5.0
Version published
Maintainers
5
Created
Source

gulp-vtex-render Build Status

VTEX Render gulp plugin

Install

$ npm install --save-dev gulp-vtex-render

Usage

import gulp from 'gulp'
import babel from 'gulp-babel'
import vtexRender from 'gulp-vtex-render/dist/'
import manifest from './manifest.json'

gulp.task('render', function() {
  return gulp.src('./render/assets/**/*.js')
    .pipe(babel())
    .pipe(gulp.dest('./.build/render/assets'))
    .pipe(vtexRender({manifest: manifest}))
    .pipe(gulp.dest('./.build/render/components'))
})

gulp.task('default', ['render'])

API

vtexRender({parameters})

parameters

manifest

App JSON manifest

License

MIT © VTEX

Keywords

gulpplugin

FAQs

Package last updated on 02 Aug 2016

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