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

Commit 258afb8

Browse files
authored
Merge pull request #1 from mitsuhiko/feature/bikeshed
Convert the source map spec to bikeshed with minor edits
2 parents 8b3e5f0 + 1419d8c commit 258afb8

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)