npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

yoso-gulp

v6.1.1

Published

A build workflow using gulp to include all JS and CSS dependencies as NPM packages build a deployable package with webpack

Downloads

66

Readme

yoso-gulp

wercker status

A build workflow using gulp to include all JS and CSS dependencies as NPM packages with webpack.

See Wiki for more details

NOTE: Dependency versions are fixed to distinct versions via npm-shrinkwrap!

Install

$ npm install --save-dev gfke/yoso-gulp

The SCSS linting relies on a ruby gem which needs to be installed

$ sudo gem install scss-lint

Usage

 gulp develop (default)  # Compile build for debugging / development 
                           and start debugging server / refreshes on every code change
 gulp build-release # Compile fully optimized build for production release

Workflow Batches

There are two main workflow batches that combine and orchestrate the other individual task into the two most common workflows

develop

Cleans everything from previous development builds. Compiles everything in a debug friendly, non-minimized version and adds watcher for file changes Creates a connect server with livereload to serve the current state of the application and all dependencies Opens your development browser to view the application

build-docs

Parses all comments in the Javascript code using JSdoc and automagically creates a browseable Wiki on the Github repository of your project. Updates only the API part of the Wiki - all manually added documentation will stay untouched

build-release

Cleans everything from previous development and release builds Sets all config values necessary for build, creates the cache key. Builds all sources like the development workflow but additionally minifies all JS, CSS and HTML sources and copies the minified version to the app folder, also renaming them to include the cache key. Finally copies all static files and html templates to the app folder making it ready to be deployed.

code-quality

Runs all code quality tasks for checking code and style conventions and also runs all tests This batch is the only one to be called in modules

Individual Tasks

The other tasks are individual tasks, which normally do not need to be executed directly

build-release-clean

Deletes the app folder, cleaning all files from release builds

build-release-copy

Copies all static files and all HTML templates to the app folder

build-release-http

build-release-scripts

Minify webpack bundle and templateCache After that, add the cache key to the filename and copy it to the app folder

build-release-styles

Minify CSS bundle After that, add the cache key to the filename and copy it to the app folder

build-index

This task copies the index.html file from the sources to the app folder and inserts the correct link to the JS files On ReleaseBuild it also minifies the HTML and adds the cache key to the filename

build-webpack

Calls webpack to resolve all require calls and create a Javascript bundle that will hold all Javascript modules, their styles and their SVGs. All dependencies are resolved in this bundle.

clean

Deletes the temporary folder, cleaning all files from development builds

http

Add a watcher on the temporary and application folder to watch for changes on script, styles, markup or images

http-browser

Opens the default browser and navigates to the development server

http-refresh

Triggers the live reload

http-server

Open a connect HTTP server with livereload to serve the application

lint-scripts

This task runs jscs and JSLint with the configurations stored in this module (local settings are ignored) to ensure same code style and quality on all modules

lint-styles

This task runs scss-lint with the configurations stored in this module (local settings are ignored) to ensure same sass style and quality on all modules

unit-test

This task runs your unit tests directly in Node using Jasmine No karma or phantomJs necessary Unit tests as well as the tested source files may be written in ES6 as both are compiled via webpack in the tmp folder before executed

watch-unit-test

Runs 'unit-test' and places a watcher on all files used in the build to recompile if any of these files changes