mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2026-04-27 07:40:52 -07:00
Restored async.js module
Got lost in a spate of Git confusion on my part
This commit is contained in:
parent
efd194141c
commit
351e5b3e1f
13 changed files with 5409 additions and 0 deletions
21
node_modules/async/Makefile
generated
vendored
Normal file
21
node_modules/async/Makefile
generated
vendored
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
PACKAGE = asyncjs
|
||||
NODEJS = $(if $(shell test -f /usr/bin/nodejs && echo "true"),nodejs,node)
|
||||
|
||||
BUILDDIR = dist
|
||||
|
||||
all: build
|
||||
|
||||
build: $(wildcard lib/*.js)
|
||||
mkdir -p $(BUILDDIR)
|
||||
uglifyjs lib/async.js > $(BUILDDIR)/async.min.js
|
||||
|
||||
test:
|
||||
nodeunit test
|
||||
|
||||
clean:
|
||||
rm -rf $(BUILDDIR)
|
||||
|
||||
lint:
|
||||
nodelint --config nodelint.cfg lib/async.js
|
||||
|
||||
.PHONY: test build all
|
||||
Loading…
Add table
Add a link
Reference in a new issue