1.2.0 • Published 5 years ago

new-relic-source-map-webpack-plugin v1.2.0

Weekly downloads
3,633
License
MIT
Repository
github
Last release
5 years ago

new-relic-source-map-webpack-plugin

Upload source maps to new relic as part of a webpack build.

Install

yarn add new-relic-source-map-webpack-plugin --dev or npm install new-relic-source-map-webpack-plugin --save-dev

Setup

Instantiate the plugin and add it to your plugins array.

applicationId, nrAdminKey, and staticAssetUrl are required unless noop is true. Full list of options in the next section.

const NewRelicSourceMapPlugin = require('new-relic-source-map-webpack-plugin');

module.exports = {
    ...webpackConfig,
    plugins: [
        ...yourPlugins,
        new NewRelicSourceMapPlugin({
            applicationId: 'YOUR NEW RELIC APP ID',
            nrAdminKey: process.env.NR_ADMIN_KEY,
            staticAssetUrl: 'http://examplecdn.com',
            noop: typeof process.env.NR_ADMIN_KEY === 'undefined', // upload source maps in prod builds only
        })
    ]   
}

If you're using releaseName and releaseId, make sure one or both are unique per build and that you use the newrelic.addRelease method in your code to identify the release.

Customize

PropertyTypeDescription
applicationIdstringapplicationId as defined here
nrAdminKeystringAdmin Key as defined here
staticAssetUrlstringthe domain your production assets are served from. Written as a complete url. Example: "https://www.examplecdn.com"
staticAssetUrlBuilderfunctionA function for building the production url your js file is built from. Will be called for every javascript file with four arguments: staticAssetUrl, the public path from your webpack config, the filename, and the webpack stats instance. Defaults to ${removeLastCharIfSlash(url)}${removeLastCharIfSlash(publicPath)}/${file}
extensionRegexregexa regex used to find js files. Defaults to /\.js$/
noopbooleancontrol boolean that decides whether or not to run the plugin. Set to true for builds where you don't want to upload assets to new relic.
releaseNamestringOptional unique identifier for the release name
releaseIdstringOptional unique version for the release identifier
errorCallbackfunctionOptional A function for error callback. Default is console.warn(`New Relic sourcemap upload error: ${err}`)
1.2.0

5 years ago

1.2.0-rc.2

5 years ago

1.2.0-rc.1

5 years ago

1.2.0-rc.0

5 years ago

1.1.0

6 years ago

1.0.1

7 years ago

1.0.0

7 years ago