🚀 Big News:Socket Has Acquired Secure Annex.Learn More →
Socket
Book a DemoSign in
Socket

rollup-plugin-strip-pragma

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

rollup-plugin-strip-pragma

A Rollup plugin to strip requirejs build pragmas from your code.

latest
npmnpm
Version
1.0.0
Version published
Weekly downloads
1.1K
-14.86%
Maintainers
1
Weekly downloads
 
Created
Source

A Rollup plugin to strip requirejs build pragmas from your code.

Installation

npm install rollup-plugin-strip-pragma --save-dev

Usage

Given source code with a requirejs build pragma, such as:

Cartesian3.fromSpherical = function(spherical, result) {
    //>>includeStart('debug', pragmas.debug);
    Check.typeOf.object('spherical', spherical);
    //>>includeEnd('debug');
    ...
}

The following rollup usage will produce code with pragmas stripped.

const rollup = require('rollup');
const rollupStripPragma = require('./rollup-plugin-strip-pragma');
const bundle = await rollup.rollup({
    input: 'source.js',
    plugins: [
        rollupStripPragma({
            pragmas: ['debug']
        })
    ]
});

Keywords

rollup

FAQs

Package last updated on 25 Sep 2019

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