Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andersnm/vscode-sourcemap-helper
VSCode Sourcemap Helper Extension
https://github.com/andersnm/vscode-sourcemap-helper
Last synced: about 23 hours ago
JSON representation
VSCode Sourcemap Helper Extension
- Host: GitHub
- URL: https://github.com/andersnm/vscode-sourcemap-helper
- Owner: andersnm
- License: mit
- Created: 2024-06-15T15:14:00.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-06-16T16:32:57.000Z (5 months ago)
- Last Synced: 2024-06-17T09:49:09.013Z (5 months ago)
- Language: TypeScript
- Size: 52.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# VSCode Sourcemap Helper
Monorepo for the VSCode Sourcemap Helper extension.
![main branch](https://github.com/andersnm/vscode-sourcemap-helper/actions/workflows/build.yml/badge.svg?branch=main)
## Getting started
```bash
# Install dependencies for all projects
npm install# Build all projects
npm run build# Run tests
npm run test# Bundle project with dependencies to single file js
npm run bundle# Create extension VSIX from bundle
npm run vsce# Publish extension VSIX
npm run publish -- -p ${VSCE_PAT}
```The extension is saved in `packages/vscode-sourcemap-helper/sourcemap-helper-(VERSION).vsix`
Projects:
- [vscode-sourcemap-helper](./packages/vscode-sourcemap-helper/)
- [vscode-sourcemap-helper-test](./packages/vscode-sourcemap-helper-test/)## Shout outs
Based on https://github.com/vladimir-kotikov/vscode-sourcemaps-navigator by Vladimir Kotikov.