feat(init): publishing
This commit is contained in:
parent
32636217ee
commit
c297e3f4ef
15 changed files with 9934 additions and 6837 deletions
28
Makefile
Normal file
28
Makefile
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
NPM=npm
|
||||
|
||||
.PHONY: configure chore build dist test publish doc
|
||||
|
||||
all: chore
|
||||
|
||||
chore: configure
|
||||
|
||||
configure:
|
||||
autoconf
|
||||
|
||||
build:
|
||||
$(NPM) run build
|
||||
|
||||
test:
|
||||
$(NPM) run test
|
||||
|
||||
doc:
|
||||
$(NPM) run doc
|
||||
|
||||
dist:
|
||||
$(NPM) run dist
|
||||
|
||||
publish:
|
||||
$(NPM) run mypublish -- -r '$(NPM_REGISTRY)'
|
||||
|
||||
clean:
|
||||
rm -rvf configure~ config.log config.status autom4te.cache build dist
|
||||
Loading…
Add table
Add a link
Reference in a new issue