mirror of
https://github.com/nodejs/node.git
synced 2025-05-15 10:01:49 +00:00

Update module marked. Customize renderer to remove id from heading. PR-URL: https://github.com/nodejs/node/pull/6396 Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: Anna Henningsen <anna@addaleax.net>
13 lines
208 B
Makefile
13 lines
208 B
Makefile
all:
|
|
@cp lib/marked.js marked.js
|
|
@uglifyjs --comments '/\*[^\0]+?Copyright[^\0]+?\*/' -o marked.min.js lib/marked.js
|
|
|
|
clean:
|
|
@rm marked.js
|
|
@rm marked.min.js
|
|
|
|
bench:
|
|
@node test --bench
|
|
|
|
.PHONY: clean all
|