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

Commit

Permalink
Merge pull request #1 from mitsuhiko/feature/bikeshed
Browse files Browse the repository at this point in the history
Convert the source map spec to bikeshed with minor edits
  • Loading branch information
littledan authored Apr 12, 2023
2 parents 8b3e5f0 + 1419d8c commit 258afb8
Show file tree
Hide file tree
Showing 3 changed files with 424 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.venv
source-map.html
16 changes: 16 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
.PHONY: all
all: build

.PHONY: build
build: .venv
.venv/bin/bikeshed spec

.PHONY: watch
watch: .venv
.venv/bin/bikeshed watch

.venv:
python3 -mvenv .venv
.venv/bin/pip install --upgrade pip
.venv/bin/pip install bikeshed
.venv/bin/bikeshed update
Loading

0 comments on commit 258afb8

Please sign in to comment.