Skip to content
This repository was archived by the owner on Jun 24, 2024. It is now read-only.

Commit 1419d8c

Browse files
committed
Convert the source map spec to bikeshed with minor edits
1 parent 8b3e5f0 commit 1419d8c

File tree

3 files changed

+424
-0
lines changed

3 files changed

+424
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.venv
2+
source-map.html

Makefile

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
.PHONY: all
2+
all: build
3+
4+
.PHONY: build
5+
build: .venv
6+
.venv/bin/bikeshed spec
7+
8+
.PHONY: watch
9+
watch: .venv
10+
.venv/bin/bikeshed watch
11+
12+
.venv:
13+
python3 -mvenv .venv
14+
.venv/bin/pip install --upgrade pip
15+
.venv/bin/pip install bikeshed
16+
.venv/bin/bikeshed update

0 commit comments

Comments
 (0)