Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ellipsis-gulp

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ellipsis-gulp

Ellipsis Project Build API Module

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

Ellipsis Gulp

Exposes the ellipsis gulp build API as a commonjs module, thus allowing one to execute ellipsis build tasks in their own gulp file at the project root.

Installation

#create project directory
mkdir my-project
cd my-project

#init npm package for the project
npm init

#install ellipsis
npm install ellipsis --save

#install ellipsis-gulp
npm install ellipsis-gulp --save-dev

#install gulp
npm install gulp --save-dev

Tasks

Create a gulpfile.js

var gulp=require('gulp');
var tasks=require('ellipsis-gulp');

//design project task--creates a design project at your project root
gulp.task('design',function(){
    tasks.design();
});

//build task--builds a kitchen sink distro at your project root
gulp.task('build',function(){
    tasks.build();
});

API

  • design()
  • build()
  • minify()
  • buildCore()
  • minifyCore()
  • buildElements()
  • minifyElements()
  • buildInteraction()
  • minifyInteraction()

FAQs

Package last updated on 27 Aug 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