@imqa/cli
v0.0.13
Published
IMQA command line tool
Readme
Command Line Interface for IMQA
Uploading source maps to IMQA
In your build pipeline, you will need to run the CLI tool. Here's how to run it:
npx @imqa/cli upload-sourcemaps --path="/path/to/sourcemaps" --serviceKey="your-service-account-api-key"You can also add this as an npm script
// In package.json
{
"scripts": {
"upload-sourcemaps": "npx @imqa/cli upload-sourcemaps --path=\"/path/to/sourcemaps\""
}
}Optionally, you can set the IMQA_SERVICE_KEY environment variable to avoid passing the serviceKey flag.
Contributing
You can test your changes locally by running the following commands:
yarn build
node dist/index.js upload ...