Skip to content

Files

Latest commit

 

History

History
 
 

sourcemap-uploader

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Source Maps Uploader

Uploading source maps to Highlight

In your build pipeline, you will need to run the CLI tool. Here's how to run it:

npx @highlight-run/sourcemap-uploader upload --path="/path/to/sourcemaps"

You can also add this as an npm script

// In package.json

{
  "scripts": {
    "upload-sourcemaps": "npx @highlight-run/sourcemap-uploader upload --path=\"/path/to/sourcemaps\""
  }
}

Contributing

You can test your changes locally by running the following commands:

yarn build
node dist/index.js upload ...