Socket
Socket
Sign inDemoInstall

gulp-wrap-file

Package Overview
Dependencies
56
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    gulp-wrap-file

a gulp plugin for wrapping file content


Version published
Weekly downloads
626
increased by30.42%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

gulp-wrap

NPM version Build Status

A gulp plugin to wrap a file contents.

Usage

Firstly, install gulp-wrap-file as a development dependency:

npm install gulp-wrap-file --save-dev

Then, add it into your gulpfile.js:

Wrap the commonjs contents with amd:

var wrapper = require("gulp-wrap-file");

gulp.src("./src/**/*.js")
    .pipe(wrap({type: 'amd'}))
    .pipe(gulp.dest("build"));

Wrap the contents by your file wrapper:

var wrap = require("gulp-wrap-file");

gulp.src("./src/**/*.js")
    .pipe(wrap({wrapper: 'define({file});'}))
    .pipe(gulp.dest("build"));

Wrap the contents with modName:

var wrap = require("gulp-wrap-file");

gulp.src("./src/**/*.js")
    .pipe(wrap({wrapper: 'define("src/{modName}",function((require, exports, module){ {file} }));'}))
    .pipe(gulp.dest("build"));

example

input

//input.js
function foo() { console.log("hello world"); }

gulpfile.js

var wrap = require("gulp-wrap-file");

gulp.src("input.js")
    .pipe(wrap({wrapper: 'define("demo/{modName}",function((require, exports, module){ {file} }));'}))
    .pipe(gulp.dest("build"));

output

define("demo/input",function((require, exports, module){ function foo() { console.log("hello world"); } }));

Parameters

type

Type: String

To wrap file with default support wrapper. On now, it only supports amd.

wrapper

Type: String or Function

The file wrapper to wrap your file content. You can get the file content and the pathname of the file. If wrapper is string, file content names {file}, short pathname of the file names {modName}. If wrapper is function, the arguments of the function are content of the file and the entire path of the file.

License

MIT License

Keywords

FAQs

Last updated on 26 Jul 2016

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc