diff options
author | 2021-11-07 17:00:00 -0800 | |
---|---|---|
committer | 2021-11-07 17:00:00 -0800 | |
commit | 4f78e2c47c8f60d45033755b665075d0511d34a6 (patch) | |
tree | 18b9d6a10322bea12274af4563251ba81b19d98c | |
parent | a3458ce6e34747fcc3c7807abd706ac0d87e5574 (diff) | |
download | bun-4f78e2c47c8f60d45033755b665075d0511d34a6.tar.gz bun-4f78e2c47c8f60d45033755b665075d0511d34a6.tar.zst bun-4f78e2c47c8f60d45033755b665075d0511d34a6.zip |
Update Makefile
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -394,6 +394,9 @@ fallback_decoder: runtime_js: @NODE_ENV=production esbuild --define:process.env.NODE_ENV="production" --target=esnext --bundle src/runtime/index.ts --format=iife --platform=browser --global-name=BUN_RUNTIME --minify --external:/bun:* > src/runtime.out.js; cat src/runtime.footer.js >> src/runtime.out.js +runtime_js_dev: + @NODE_ENV=development esbuild --define:process.env.NODE_ENV="development" --target=esnext --bundle src/runtime/index.ts --format=iife --platform=browser --global-name=BUN_RUNTIME --external:/bun:* > src/runtime.out.js; cat src/runtime.footer.js >> src/runtime.out.js + bun_error: @cd packages/bun-error; $(NPM_CLIENT) install; npm run --silent build |