JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 480
  • Score
    100M100P100Q91132F
  • License MIT

A plugin for Gulp

Package Exports

  • gulp-storage

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (gulp-storage) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

(PLUGIN AUTHOR: Please read Plugin README conventions, then delete this line)

gulp-storage

NPM version Build Status Coverage Status Dependency Status

storage plugin for gulp

Usage

First, install gulp-storage as a development dependency:

npm install --save-dev gulp-storage

Then, add it to your gulpfile.js:

var storage = require("gulp-storage");

gulp.src("./src/*.ext")
    .pipe(storage({
        msg: "Hello Gulp!"
    }))
    .pipe(gulp.dest("./dist"));

API

storage(options)

options.msg

Type: String
Default: Hello World

The message you wish to attach to file.

License

MIT License