🚀 Launch Week Day 2:Introducing Custom Tabs for Org Alerts.Learn More →
Socket
Book a DemoInstallSign in
Socket

rollup-plugin-sourcemaps2

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rollup-plugin-sourcemaps2

Rollup plugin for grabbing source maps from sourceMappingURLs

Source
npmnpm
Version
0.5.0
Version published
Weekly downloads
20K
3.73%
Maintainers
1
Weekly downloads
 
Created
Source

rollup-plugin-sourcemaps2

Version License Build Status

Rollup plugin for loading files with existing source maps. Inspired by webpack/source-map-loader.

Works with rollup 4.x.x or later.

This is building on top of the awesome work of Max Davidson. The repo wasn't getting updates so I took it upon myself to keep a copy updated

If you use rollup-plugin-babel, you might be able to use the inputSourceMap option instead of this plugin. Conversely, if you use this plugin alongside rollup-plugin-babel, you should explicitly set the Babel inputSourceMap option to false.

If this plugin is not resolving the sourcemap URL (particularly on MS Windows), try also including the official rollup plugin @rollup/plugin-url.

Why?

  • You transpile your files with source maps before bundling with rollup
  • You consume external modules with bundled source maps

Usage

import sourcemaps from 'rollup-plugin-sourcemaps2';

export default {
  input: 'src/index.js',
  plugins: [sourcemaps()],
  output: {
    sourcemap: true,
    file: 'dist/my-awesome-package.js',
  },
};

Keywords

rollup

FAQs

Package last updated on 19 Feb 2025

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