Socket
Socket
Sign inDemoInstall

rollup-plugin-sourcemaps

Package Overview
Dependencies
31
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    rollup-plugin-sourcemaps

Rollup plugin for grabbing source maps from sourceMappingURLs


Version published
Maintainers
1
Install size
217 kB
Created

Changelog

Source

0.4.0

  • Remove async functions, since they require babel-runtime on Node 4

Readme

Source

rollup-plugin-sourcemaps

npm Build Status Coverage Status Dependency Status devDependency Status

Rollup plugin for grabbing source maps from sourceMappingURLs.

Useful for working with precompiled modules with existing source maps, without resorting to sorcery.

Requires Rollup v0.31.2 or later.

Inspired by webpack/source-map-loader.

Usage

import sourcemaps from 'rollup-plugin-sourcemaps';

export default {
  entry: 'src/index.js',
  dest: 'dist/my-awesome-package.js',
  sourceMap: true,
  plugins: [
    sourcemaps()
  ]
};

Keywords

FAQs

Last updated on 12 Sep 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