Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 1 month 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 (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-09-11T20:25:00.000Z (over 2 years ago)
- Last Synced: 2023-10-11T19:00:31.709Z (over 1 year ago)
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/@sabbirshouvo/un-source-map
- Size: 21.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[![npm version](https://badge.fury.io/js/@sabbirshouvo%2Fun-source-map.svg)](https://badge.fury.io/js/@sabbirshouvo%2Fun-source-map)
[![GitHub issues](https://img.shields.io/github/issues/sh-sabbir/un-source-map)](https://github.com/sh-sabbir/un-source-map/issues)
[![GitHub stars](https://img.shields.io/github/stars/sh-sabbir/un-source-map)](https://github.com/sh-sabbir/un-source-map/stargazers)
[![GitHub forks](https://img.shields.io/github/forks/sh-sabbir/un-source-map)](https://github.com/sh-sabbir/un-source-map/network)
[![Twitter](https://img.shields.io/twitter/url?style=social&url=https%3A%2F%2Fwww.npmjs.com%2Fpackage%2F%40sabbirshouvo%2Fun-source-map)](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
```