Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add stage information #134

Merged
merged 3 commits into from
Oct 7, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,15 @@ Older revisions:
2. Run `pipx run bikeshed` from this repository's root folder
3. Open source-map.html in your browser

## Current Proposals

| Proposal | Author | Stage |
| ------------------------------------------------------------------------------------------ | ----------------------- | ------- |
| [Scopes](https://github.com/tc39/source-map/blob/main/proposals/scopes.md) | Holger Benl, Simon Zünd | Stage 3 |
| [Range Mappings](https://github.com/tc39/source-map/blob/main/proposals/range-mappings.md) | Tobias Koppers | Stage 2 |
| [Debug ID](https://github.com/tc39/source-map/blob/main/proposals/debug-id.md) | Luca Forstner | Stage 1 |
| [Env](https://github.com/tc39/source-map/blob/main/proposals/env.md) | Nick Fitzgerald | Stage 1 |

## License

The source map specifications are published under CC BY-SA 3.0.
Expand Down
8 changes: 8 additions & 0 deletions proposals/debug-id.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
This document presents a proposal to add globally unique build or debug IDs to
source maps and generated code, making build artifacts self-identifying.

## Current Status

Source maps proposal at stage 1 of the process, see [Our process document](https://github.com/tc39/source-map/blob/main/PROCESS.md)

## Author

Luca Forstner

## Background

Source maps play a crucial role in debugging by
Expand Down
9 changes: 5 additions & 4 deletions proposals/env.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
# Proposal for Encoding Source-Level Environment Information Within Source Maps

Author: Nick Fitzgerald <fitzgen@mozilla.com>, Mozilla
## Current Status

Date: July, 2015
Source maps proposal at stage 1 of the process, see [Our process document](https://github.com/tc39/source-map/blob/main/PROCESS.md)

This work is licensed under a
[Creative Commons Attribution-ShareAlike 4.0 International License](https://creativecommons.org/licenses/by-sa/4.0/).
## Author

Nick Fitzgerald

## Abstract

Expand Down
8 changes: 8 additions & 0 deletions proposals/range-mappings.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Range Mappings

## Current Status

Source maps proposal at stage 2 of the process, see [Our process document](https://github.com/tc39/source-map/blob/main/PROCESS.md)

## Author

Tobias Koppers

* Stage: 2
* Author: Tobias Koppers
* Date: November, 2023
Expand Down
11 changes: 9 additions & 2 deletions proposals/scopes.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
# Proposal for adding information about scopes and their bindings to source maps

* **Author**: Holger Benl
* **Date**: September, 2023
* **Prototype**: https://github.com/hbenl/tc39-proposal-scope-mapping/
* **Related**: https://github.com/tc39/source-map-rfc/blob/main/proposals/env.md

Discussion of this proposal is placed at [#37](https://github.com/tc39/source-map-rfc/issues/37)

## Current Status

Source maps proposal at stage 3 of the process, see [Our process document](https://github.com/tc39/source-map/blob/main/PROCESS.md)

## Author

Holger Benl\
jkup marked this conversation as resolved.
Show resolved Hide resolved
Simon Zünd

## Abstract

This document describes an extension to the [source map format](https://tc39.es/source-map-spec/) for encoding scopes and bindings information to improve the debugging experience.
Expand Down
Loading