diff options
author | 2023-01-31 20:35:12 -0800 | |
---|---|---|
committer | 2023-01-31 20:35:12 -0800 | |
commit | 696d4b6267500af755f01b67cde3a008963c80e1 (patch) | |
tree | f33b37ace87d29a575cf8cf02c9a924522752e74 | |
parent | cc4326cd829decc95d1f1f23998f97705637e04b (diff) | |
download | bun-696d4b6267500af755f01b67cde3a008963c80e1.tar.gz bun-696d4b6267500af755f01b67cde3a008963c80e1.tar.zst bun-696d4b6267500af755f01b67cde3a008963c80e1.zip |
Add target for printing version in makefile (#1957)
* Add get-*
* Add print-version target
* Webkit
---------
Co-authored-by: Colin McDonnell <colinmcd@alum.mit.edu>
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -509,6 +509,9 @@ npm-install: $(NPM_CLIENT) install --ignore-scripts --production print-% : ; @echo $* = $($*) +get-% : ; @echo $($*) +print-version: + @echo $(PACKAGE_JSON_VERSION) |