Socket
Socket
Sign inDemoInstall

@flareapp/vite-plugin-sourcemap-uploader

Package Overview
Dependencies
181
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.1 to 1.0.2

4

CHANGELOG.md

@@ -5,2 +5,6 @@ # Changelog

## 1.0.2 - 2022-12-19
- added support for vite 4
## 1.0.1 - 2022-08-10

@@ -7,0 +11,0 @@

4

dist/index.d.ts
import { Plugin } from 'vite';
export declare type PluginConfig = {
export type PluginConfig = {
key: string;

@@ -10,3 +10,3 @@ base?: string;

};
export declare type Sourcemap = {
export type Sourcemap = {
original_file: string;

@@ -13,0 +13,0 @@ content: string;

{
"name": "@flareapp/vite-plugin-sourcemap-uploader",
"version": "1.0.1",
"version": "1.0.2",
"main": "dist/index.js",

@@ -29,13 +29,13 @@ "types": "dist/index.d.ts",

"devDependencies": {
"@types/node": "^18.0.1",
"prettier": "2.7.1",
"typescript": "^4.7.4",
"vite": "^2.7||^3.0"
"@types/node": "^18.11.17",
"prettier": "2.8.1",
"typescript": "^4.9.4",
"vite": "^2.7||^3.0||^4.0"
},
"dependencies": {
"axios": "^0.27.0",
"fast-glob": "^3.2.11"
"axios": "^1.2.1",
"fast-glob": "^3.2.12"
},
"peerDependencies": {
"vite": "^2.7||^3.0"
"vite": "^2.7||^3.0||^4.0"
},

@@ -42,0 +42,0 @@ "publishConfig": {

@@ -49,1 +49,19 @@ # Vite plugin for sending sourcemaps to Flare

- `removeSourcemaps: boolean`: whether to remove the sourcemaps after uploading them (defaults to `false`). Comes in handy when you want to upload sourcemaps to Flare but don't want them published in your build.
## development
Publish a new release:
```bash
npm version patch
npm publish
```
Tag the release:
<pre>
git tag <var>VERSION</var>
git push origin <var>VERSION</var>
</pre>
Replace <var>VERSION</var> with `v` + the version from `package.json` — for example, `v1.0.2`
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