mirror of
https://github.com/circlecell/jsonlint-mod.git
synced 2026-01-21 05:07:49 +08:00
12 lines
213 B
Makefile
12 lines
213 B
Makefile
|
|
all: build test
|
|
|
|
build:
|
|
jison src/jsonlint.y src/jsonlint.l
|
|
mv jsonlint.js lib/jsonlint.js
|
|
node scripts/bundle.js | uglifyjs > web/jsonlint.js
|
|
|
|
test: lib/jsonlint.js test/all-tests.js
|
|
node test/all-tests.js
|
|
|