mirror of
https://github.com/status-im/react-native.git
synced 2025-01-09 09:12:02 +00:00
217a4449d4
Reviewed By: bnham Differential Revision: D3876267 fbshipit-source-id: 2ad7e70445f3f4641cde554e94de000403368233
9 lines
308 B
Makefile
9 lines
308 B
Makefile
SHELL := /bin/bash
|
|
|
|
all:
|
|
NODE_PATH="../../../../node_modules/" babel --presets babel-preset-react-native --source-maps inline -d out src
|
|
for f in out/*.js; do echo -e "\n// @generated" >> $$f; done
|
|
|
|
watch:
|
|
NODE_PATH="../../../../node_modules/" babel --watch --presets babel-preset-react-native -d out src
|