https://github.com/sh-sabbir/un-source-map
Unpack your JS source maps to original files and folders in a proper way.
https://github.com/sh-sabbir/un-source-map
Last synced: 5 days ago
JSON representation
Unpack your JS source maps to original files and folders in a proper way.
- Host: GitHub
- URL: https://github.com/sh-sabbir/un-source-map
- Owner: sh-sabbir
- Created: 2022-09-11T19:55:27.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-09-11T20:25:00.000Z (almost 3 years ago)
- Last Synced: 2025-05-30T16:07:31.765Z (about 1 month ago)
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/@sabbirshouvo/un-source-map
- Size: 21.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://badge.fury.io/js/@sabbirshouvo%2Fun-source-map)
[](https://github.com/sh-sabbir/un-source-map/issues)
[](https://github.com/sh-sabbir/un-source-map/stargazers)
[](https://github.com/sh-sabbir/un-source-map/network)
[](https://twitter.com/intent/tweet?text=Wow:&url=https%3A%2F%2Fwww.npmjs.com%2Fpackage%2F%40sabbirshouvo%2Fun-source-map)# Un-Source-Map (unmap)
### CLI to Unpack your JS source maps to original files and folders in a proper way.
## Install
npm:
```shell
npm install -g @sabbirshouvo/un-source-map
```
yarn:
```shell
yarn global add @sabbirshouvo/un-source-map
```## Usage
```shell
unmap [options] [source]
````source` is a required parameter, it can also be a directory.
If `source` is a directory, `unmap` will traverse all the files in this directory and deal each file.
## Examples
```shell
unmap bundle.js.map
unmap bundle.js.map -o app
```