You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
427 B
Makefile
19 lines
427 B
Makefile
.PHONY: all
|
|
all: node browser
|
|
|
|
.PHONY: src/index.ts
|
|
js/index.js: src/index.ts
|
|
#tsc src/index.ts
|
|
tsc
|
|
|
|
node: js/index.js
|
|
webpack-cli --config misc/webpack.node.config.js
|
|
|
|
browser: js/index.js
|
|
webpack-cli --config misc/webpack.browser.config.js
|
|
|
|
.PHONY: dist prod
|
|
dist prod: js/index.js
|
|
webpack-cli --mode=production --config misc/webpack.node.config.js
|
|
webpack-cli --mode=production --config misc/webpack.browser.config.js
|