2015-08-26 03:48:43 +00:00
|
|
|
# Natal
|
|
|
|
# Bootstrap ClojureScript React Native apps
|
|
|
|
# Dan Motzenbecker
|
|
|
|
# http://oxism.com
|
|
|
|
# MIT License
|
|
|
|
|
2015-10-04 22:53:54 +00:00
|
|
|
fs = require 'fs'
|
2015-10-17 19:10:31 +00:00
|
|
|
net = require 'net'
|
|
|
|
http = require 'http'
|
2015-10-04 22:53:54 +00:00
|
|
|
crypto = require 'crypto'
|
|
|
|
child = require 'child_process'
|
|
|
|
cli = require 'commander'
|
|
|
|
chalk = require 'chalk'
|
|
|
|
semver = require 'semver'
|
|
|
|
pkgJson = require __dirname + '/package.json'
|
2015-08-22 03:45:42 +00:00
|
|
|
|
2015-10-03 19:36:24 +00:00
|
|
|
nodeVersion = pkgJson.engines.node
|
2015-08-22 03:45:42 +00:00
|
|
|
resources = __dirname + '/resources/'
|
|
|
|
camelRx = /([a-z])([A-Z])/g
|
|
|
|
projNameRx = /\$PROJECT_NAME\$/g
|
|
|
|
projNameHyphRx = /\$PROJECT_NAME_HYPHENATED\$/g
|
|
|
|
projNameUnderRx = /\$PROJECT_NAME_UNDERSCORED\$/g
|
2015-10-16 03:06:23 +00:00
|
|
|
rnVersion = '0.13.0-rc'
|
2015-10-17 19:10:31 +00:00
|
|
|
rnPackagerPort = 8081
|
2015-09-19 18:19:54 +00:00
|
|
|
podMinVersion = '0.38.2'
|
2015-10-04 19:09:11 +00:00
|
|
|
process.title = 'natal'
|
2015-09-19 02:55:59 +00:00
|
|
|
|
2015-08-22 03:45:42 +00:00
|
|
|
|
2015-08-26 01:28:58 +00:00
|
|
|
log = (s, color = 'green') ->
|
|
|
|
console.log chalk[color] s
|
2015-08-22 03:45:42 +00:00
|
|
|
|
|
|
|
|
2015-08-26 01:28:58 +00:00
|
|
|
logErr = (err, color = 'red') ->
|
|
|
|
console.error chalk[color] err
|
2015-09-19 18:47:07 +00:00
|
|
|
process.exit 1
|
2015-08-22 03:45:42 +00:00
|
|
|
|
|
|
|
|
2015-10-04 19:32:23 +00:00
|
|
|
exec = (cmd, keepOutput) ->
|
|
|
|
if keepOutput
|
2015-10-04 22:53:54 +00:00
|
|
|
child.execSync cmd
|
2015-10-04 19:32:23 +00:00
|
|
|
else
|
2015-10-04 22:53:54 +00:00
|
|
|
child.execSync cmd, stdio: 'ignore'
|
2015-10-04 19:32:23 +00:00
|
|
|
|
|
|
|
|
2015-10-04 00:34:10 +00:00
|
|
|
readFile = (path) ->
|
|
|
|
fs.readFileSync path, encoding: 'ascii'
|
|
|
|
|
|
|
|
|
2015-10-04 19:33:20 +00:00
|
|
|
edit = (path, pairs) ->
|
2015-08-22 03:45:42 +00:00
|
|
|
fs.writeFileSync path, pairs.reduce (contents, [rx, replacement]) ->
|
|
|
|
contents.replace rx, replacement
|
2015-10-04 00:34:10 +00:00
|
|
|
, readFile path
|
2015-08-22 03:45:42 +00:00
|
|
|
|
|
|
|
|
2015-10-04 02:35:19 +00:00
|
|
|
pluckUuid = (line) ->
|
|
|
|
line.match(/\[(.+)\]/)[1]
|
|
|
|
|
|
|
|
|
2015-10-17 04:37:20 +00:00
|
|
|
toUnderscored = (s) ->
|
|
|
|
s.replace(camelRx, '$1_$2').toLowerCase()
|
|
|
|
|
|
|
|
|
2015-10-17 19:10:31 +00:00
|
|
|
checkPort = (port, cb) ->
|
|
|
|
sock = net.connect {port}, ->
|
|
|
|
sock.end()
|
|
|
|
req = http.get "http://localhost:#{port}/status", (res) ->
|
|
|
|
data = ''
|
|
|
|
res.on 'data', (chunk) -> data += chunk
|
|
|
|
res.on 'end', ->
|
|
|
|
cb data.toString() isnt 'packager-status:running'
|
|
|
|
|
|
|
|
.on 'error', -> cb true
|
|
|
|
.setTimeout 3000
|
|
|
|
|
|
|
|
sock.on 'error', ->
|
|
|
|
sock.end()
|
|
|
|
cb false
|
|
|
|
|
|
|
|
|
2015-10-17 19:20:02 +00:00
|
|
|
ensureFreePort = (cb) ->
|
|
|
|
checkPort rnPackagerPort, (inUse) ->
|
|
|
|
if inUse
|
|
|
|
logErr "
|
|
|
|
Port #{rnPackagerPort} is currently in use by another process
|
|
|
|
and is needed by the React Native packager.
|
|
|
|
"
|
|
|
|
cb()
|
|
|
|
|
|
|
|
|
2015-09-19 18:02:28 +00:00
|
|
|
writeConfig = (config) ->
|
|
|
|
try
|
|
|
|
fs.writeFileSync '.natal', JSON.stringify config, null, 2
|
|
|
|
catch {message}
|
|
|
|
logErr \
|
|
|
|
if message.match /EACCES/i
|
|
|
|
'Invalid write permissions for creating .natal config file'
|
|
|
|
else
|
|
|
|
message
|
|
|
|
|
|
|
|
|
2015-09-19 18:21:19 +00:00
|
|
|
readConfig = ->
|
|
|
|
try
|
2015-10-04 00:34:10 +00:00
|
|
|
JSON.parse readFile '.natal'
|
2015-09-19 18:21:19 +00:00
|
|
|
catch {message}
|
|
|
|
logErr \
|
|
|
|
if message.match /ENOENT/i
|
|
|
|
'No Natal config was found in this directory (.natal)'
|
|
|
|
else if message.match /EACCES/i
|
|
|
|
'No read permissions for .natal'
|
|
|
|
else if message.match /Unexpected/i
|
|
|
|
'.natal contains malformed JSON'
|
|
|
|
else
|
|
|
|
message
|
|
|
|
|
|
|
|
|
2015-10-04 19:11:54 +00:00
|
|
|
getBundleId = (name) ->
|
2015-10-04 00:35:46 +00:00
|
|
|
try
|
2015-10-04 23:44:22 +00:00
|
|
|
if line = readFile "native/ios/#{name}.xcodeproj/project.pbxproj"
|
|
|
|
.match /PRODUCT_BUNDLE_IDENTIFIER = (.+);/
|
|
|
|
|
2015-10-04 00:35:46 +00:00
|
|
|
line[1]
|
2015-10-04 23:44:22 +00:00
|
|
|
|
|
|
|
else if line = readFile "native/ios/#{name}/Info.plist"
|
|
|
|
.match /\<key\>CFBundleIdentifier\<\/key\>\n?\s*\<string\>(.+)\<\/string\>/
|
|
|
|
|
2015-10-04 00:35:46 +00:00
|
|
|
rfcIdRx = /\$\(PRODUCT_NAME\:rfc1034identifier\)/
|
|
|
|
|
|
|
|
if line[1].match rfcIdRx
|
|
|
|
line[1].replace rfcIdRx, name
|
|
|
|
else
|
|
|
|
line[1]
|
|
|
|
|
|
|
|
else
|
|
|
|
throw new Error 'Cannot find bundle identifier in project.pbxproj or Info.plist'
|
|
|
|
|
|
|
|
catch {message}
|
|
|
|
logErr message
|
|
|
|
|
|
|
|
|
2015-08-22 03:45:42 +00:00
|
|
|
init = (projName) ->
|
2015-08-22 03:46:38 +00:00
|
|
|
projNameHyph = projName.replace(camelRx, '$1-$2').toLowerCase()
|
2015-10-17 04:37:20 +00:00
|
|
|
projNameUs = toUnderscored projName
|
2015-08-22 03:46:38 +00:00
|
|
|
|
|
|
|
try
|
2015-09-19 03:10:03 +00:00
|
|
|
log "Creating #{projName}", 'bgMagenta'
|
2015-08-26 01:44:11 +00:00
|
|
|
log ''
|
|
|
|
|
2015-08-22 17:45:37 +00:00
|
|
|
if fs.existsSync projNameHyph
|
2015-09-19 03:10:03 +00:00
|
|
|
throw new Error "Directory #{projNameHyph} already exists"
|
2015-08-22 17:45:37 +00:00
|
|
|
|
2015-10-04 19:32:23 +00:00
|
|
|
exec 'type lein'
|
|
|
|
exec 'type pod'
|
|
|
|
exec 'type watchman'
|
2015-10-04 23:33:37 +00:00
|
|
|
exec 'type xcodebuild'
|
2015-10-03 19:48:28 +00:00
|
|
|
|
2015-10-04 19:32:23 +00:00
|
|
|
podVersion = exec('pod --version', true).toString().trim()
|
2015-09-19 03:10:03 +00:00
|
|
|
unless semver.satisfies podVersion, ">=#{podMinVersion}"
|
2015-09-19 02:55:59 +00:00
|
|
|
throw new Error """
|
2015-09-19 03:10:03 +00:00
|
|
|
Natal requires CocoaPods #{podMinVersion} or higher (you have #{podVersion}).
|
2015-09-19 02:55:59 +00:00
|
|
|
Run [sudo] gem update cocoapods and try again.
|
|
|
|
"""
|
2015-08-22 03:46:38 +00:00
|
|
|
|
2015-08-22 15:06:30 +00:00
|
|
|
log 'Creating Leiningen project'
|
2015-10-04 19:32:23 +00:00
|
|
|
exec "lein new #{projNameHyph}"
|
2015-08-22 15:06:30 +00:00
|
|
|
|
|
|
|
log 'Updating Leiningen project'
|
|
|
|
process.chdir projNameHyph
|
2015-10-04 19:32:23 +00:00
|
|
|
exec "cp #{resources}project.clj project.clj"
|
2015-10-04 19:33:20 +00:00
|
|
|
edit 'project.clj', [[projNameHyphRx, projNameHyph]]
|
2015-09-19 03:10:03 +00:00
|
|
|
corePath = "src/#{projNameUs}/core.clj"
|
2015-08-22 15:06:30 +00:00
|
|
|
fs.unlinkSync corePath
|
|
|
|
corePath += 's'
|
2015-10-04 19:32:23 +00:00
|
|
|
exec "cp #{resources}core.cljs #{corePath}"
|
2015-10-04 19:33:20 +00:00
|
|
|
edit corePath, [[projNameHyphRx, projNameHyph], [projNameRx, projName]]
|
2015-08-22 03:46:38 +00:00
|
|
|
|
2015-08-22 17:30:12 +00:00
|
|
|
log 'Compiling ClojureScript'
|
2015-10-04 19:32:23 +00:00
|
|
|
exec 'lein cljsbuild once dev'
|
2015-08-22 17:30:12 +00:00
|
|
|
|
2015-08-22 17:30:42 +00:00
|
|
|
log 'Creating React Native skeleton'
|
2015-10-04 21:54:48 +00:00
|
|
|
fs.mkdirSync 'native'
|
|
|
|
process.chdir 'native'
|
|
|
|
|
2015-08-30 15:04:57 +00:00
|
|
|
fs.writeFileSync 'package.json', JSON.stringify
|
|
|
|
name: projName
|
|
|
|
version: '0.0.1'
|
|
|
|
private: true
|
|
|
|
scripts:
|
|
|
|
start: 'node_modules/react-native/packager/packager.sh'
|
|
|
|
dependencies:
|
|
|
|
'react-native': rnVersion
|
|
|
|
, null, 2
|
2015-10-04 21:54:48 +00:00
|
|
|
|
2015-10-04 19:32:23 +00:00
|
|
|
exec 'npm i'
|
2015-10-04 21:54:48 +00:00
|
|
|
exec "
|
|
|
|
node -e
|
|
|
|
\"process.argv[3]='#{projName}';
|
|
|
|
require('react-native/local-cli/init')('.', '#{projName}')\"
|
|
|
|
"
|
|
|
|
|
|
|
|
exec 'rm -rf android'
|
|
|
|
fs.unlinkSync 'index.android.js'
|
2015-08-22 17:30:42 +00:00
|
|
|
|
2015-08-22 17:32:06 +00:00
|
|
|
log 'Installing Pod dependencies'
|
2015-10-04 21:54:48 +00:00
|
|
|
process.chdir 'ios'
|
2015-10-04 19:32:23 +00:00
|
|
|
exec "cp #{resources}Podfile ."
|
|
|
|
exec 'pod install'
|
2015-08-22 17:32:06 +00:00
|
|
|
|
2015-08-22 17:32:53 +00:00
|
|
|
log 'Updating Xcode project'
|
|
|
|
for ext in ['m', 'h']
|
2015-09-19 03:10:03 +00:00
|
|
|
path = "#{projName}/AppDelegate.#{ext}"
|
2015-10-04 19:32:23 +00:00
|
|
|
exec "cp #{resources}AppDelegate.#{ext} #{path}"
|
2015-10-04 19:33:20 +00:00
|
|
|
edit path, [[projNameRx, projName], [projNameHyphRx, projNameHyph]]
|
2015-08-22 17:32:53 +00:00
|
|
|
|
|
|
|
uuid1 = crypto
|
|
|
|
.createHash 'md5'
|
|
|
|
.update projName, 'utf8'
|
|
|
|
.digest('hex')[...24]
|
|
|
|
.toUpperCase()
|
|
|
|
|
2015-08-29 05:46:58 +00:00
|
|
|
uuid2 = uuid1.split ''
|
|
|
|
uuid2.splice 7, 1, ((parseInt(uuid1[7], 16) + 1) % 16).toString(16).toUpperCase()
|
|
|
|
uuid2 = uuid2.join ''
|
2015-08-22 17:32:53 +00:00
|
|
|
|
2015-10-04 19:33:20 +00:00
|
|
|
edit \
|
2015-09-19 03:10:03 +00:00
|
|
|
"#{projName}.xcodeproj/project.pbxproj",
|
2015-08-22 17:32:53 +00:00
|
|
|
[
|
|
|
|
[
|
|
|
|
/OTHER_LDFLAGS = "-ObjC";/g
|
|
|
|
'OTHER_LDFLAGS = "${inherited}";'
|
|
|
|
]
|
|
|
|
[
|
|
|
|
/\/\* End PBXBuildFile section \*\//
|
2015-09-19 03:10:03 +00:00
|
|
|
"\t\t#{uuid2} /* out in Resources */ =
|
|
|
|
{isa = PBXBuildFile; fileRef = #{uuid1} /* out */; };
|
2015-08-22 17:32:53 +00:00
|
|
|
\n/* End PBXBuildFile section */"
|
|
|
|
]
|
|
|
|
[
|
|
|
|
/\/\* End PBXFileReference section \*\//
|
2015-09-19 03:10:03 +00:00
|
|
|
"\t\t#{uuid1} /* out */ = {isa = PBXFileReference; lastKnownFileType
|
2015-10-04 21:54:48 +00:00
|
|
|
= folder; name = out; path = ../../target/out;
|
2015-08-22 17:32:53 +00:00
|
|
|
sourceTree = \"<group>\"; };\n/* End PBXFileReference section */"
|
|
|
|
]
|
|
|
|
[
|
|
|
|
/main.jsbundle \*\/\,/
|
2015-09-19 03:10:03 +00:00
|
|
|
"main.jsbundle */,\n\t\t\t\t#{uuid1} /* out */,"
|
2015-08-22 17:32:53 +00:00
|
|
|
]
|
|
|
|
[
|
|
|
|
/\/\* LaunchScreen.xib in Resources \*\/\,/
|
|
|
|
"/* LaunchScreen.xib in Resources */,
|
2015-09-19 03:10:03 +00:00
|
|
|
\n\t\t\t\t#{uuid2} /* out in Resources */,"
|
2015-08-22 17:32:53 +00:00
|
|
|
]
|
|
|
|
]
|
|
|
|
|
2015-10-04 19:11:54 +00:00
|
|
|
testId = readFile("#{projName}.xcodeproj/project.pbxproj")
|
|
|
|
.match(new RegExp "([0-9A-F]+) \/\\* #{projName}Tests \\*\/ = \\{")[1]
|
|
|
|
|
2015-10-04 19:33:20 +00:00
|
|
|
edit \
|
2015-10-04 19:11:54 +00:00
|
|
|
"#{projName}.xcodeproj/xcshareddata/xcschemes/#{projName}.xcscheme",
|
|
|
|
[
|
|
|
|
[
|
|
|
|
/\<Testables\>\n\s*\<\/Testables\>/
|
|
|
|
"""
|
|
|
|
<Testables>
|
|
|
|
<TestableReference
|
|
|
|
skipped = "NO">
|
|
|
|
<BuildableReference
|
|
|
|
BuildableIdentifier = "primary"
|
|
|
|
BlueprintIdentifier = "#{testId}"
|
|
|
|
BuildableName = "#{projName}Tests.xctest"
|
|
|
|
BlueprintName = "#{projName}Tests"
|
|
|
|
ReferencedContainer = "container:#{projName}.xcodeproj">
|
|
|
|
</BuildableReference>
|
|
|
|
</TestableReference>
|
|
|
|
</Testables>
|
|
|
|
"""
|
|
|
|
]
|
|
|
|
]
|
|
|
|
|
2015-09-19 18:02:28 +00:00
|
|
|
log 'Creating Natal config'
|
2015-09-19 03:10:03 +00:00
|
|
|
process.chdir '../..'
|
2015-10-04 19:11:54 +00:00
|
|
|
config =
|
2015-10-04 02:35:19 +00:00
|
|
|
name: projName
|
|
|
|
device: pluckUuid getDeviceList().find (line) -> /iPhone 6/.test line
|
2015-09-19 03:10:03 +00:00
|
|
|
|
2015-10-04 19:11:54 +00:00
|
|
|
writeConfig config
|
|
|
|
launch config
|
|
|
|
|
2015-10-04 23:05:04 +00:00
|
|
|
log ''
|
|
|
|
log 'To get started with your new app, first cd into its directory:', 'yellow'
|
2015-09-19 03:10:03 +00:00
|
|
|
log "cd #{projNameHyph}", 'inverse'
|
2015-10-04 23:05:04 +00:00
|
|
|
log ''
|
|
|
|
log 'Boot the REPL by typing:', 'yellow'
|
|
|
|
log 'natal repl', 'inverse'
|
|
|
|
log 'Then choose the correct device to connect to (probably 1).', 'yellow'
|
|
|
|
log ''
|
2015-08-26 01:44:11 +00:00
|
|
|
log 'At the REPL prompt type this:', 'yellow'
|
2015-09-19 03:10:03 +00:00
|
|
|
log "(in-ns '#{projNameHyph}.core)", 'inverse'
|
2015-10-04 23:05:04 +00:00
|
|
|
log ''
|
2015-08-26 01:44:11 +00:00
|
|
|
log 'Changes you make via the REPL or by changing your .cljs files should appear live.', 'yellow'
|
2015-10-04 23:05:04 +00:00
|
|
|
log ''
|
2015-08-26 01:44:11 +00:00
|
|
|
log 'Try this command as an example:', 'yellow'
|
|
|
|
log '(swap! app-state assoc :text "Hello Native World")', 'inverse'
|
2015-08-26 01:57:22 +00:00
|
|
|
log ''
|
2015-08-26 03:48:43 +00:00
|
|
|
log '✔ Done', 'bgMagenta'
|
|
|
|
log ''
|
2015-08-26 01:44:11 +00:00
|
|
|
|
2015-09-19 03:05:39 +00:00
|
|
|
catch {message}
|
|
|
|
logErr \
|
2015-10-18 22:33:58 +00:00
|
|
|
if message.match /type.+lein/i
|
2015-10-03 19:48:28 +00:00
|
|
|
'Leiningen is required (http://leiningen.org)'
|
2015-10-18 22:33:58 +00:00
|
|
|
else if message.match /type.+pod/i
|
2015-10-03 19:48:28 +00:00
|
|
|
'CocoaPods is required (https://cocoapods.org)'
|
2015-10-18 22:33:58 +00:00
|
|
|
else if message.match /type.+watchman/i
|
2015-10-03 19:48:28 +00:00
|
|
|
'Watchman is required (https://facebook.github.io/watchman)'
|
2015-10-18 22:33:58 +00:00
|
|
|
else if message.match /type.+xcodebuild/i
|
2015-10-04 23:33:37 +00:00
|
|
|
'Xcode Command Line Tools are required'
|
2015-09-19 03:05:39 +00:00
|
|
|
else
|
|
|
|
message
|
2015-08-22 03:46:38 +00:00
|
|
|
|
2015-09-19 18:47:28 +00:00
|
|
|
|
2015-10-04 19:11:54 +00:00
|
|
|
launch = ({name, device}) ->
|
2015-10-04 21:54:48 +00:00
|
|
|
log 'Compiling Xcode project'
|
2015-10-04 19:11:54 +00:00
|
|
|
try
|
2015-10-04 19:32:23 +00:00
|
|
|
exec "
|
|
|
|
xcodebuild
|
2015-10-04 21:54:48 +00:00
|
|
|
-workspace native/ios/#{name}.xcworkspace
|
2015-10-04 19:32:23 +00:00
|
|
|
-scheme #{name}
|
|
|
|
-destination platform='iOS Simulator',OS=latest,id='#{device}'
|
2015-10-16 01:36:58 +00:00
|
|
|
test
|
2015-10-04 19:32:23 +00:00
|
|
|
"
|
2015-10-04 19:11:54 +00:00
|
|
|
|
|
|
|
log 'Launching simulator'
|
2015-10-04 19:32:23 +00:00
|
|
|
exec "xcrun simctl launch #{device} #{getBundleId name}"
|
2015-10-04 19:11:54 +00:00
|
|
|
|
|
|
|
catch {message}
|
|
|
|
logErr message
|
|
|
|
|
|
|
|
|
2015-09-19 18:47:28 +00:00
|
|
|
openXcode = (name) ->
|
|
|
|
try
|
2015-10-04 21:54:48 +00:00
|
|
|
exec "open native/ios/#{name}.xcworkspace"
|
2015-09-19 18:47:28 +00:00
|
|
|
catch {message}
|
|
|
|
logErr \
|
|
|
|
if message.match /ENOENT/i
|
|
|
|
"""
|
2015-10-04 21:54:48 +00:00
|
|
|
Cannot find #{name}.xcworkspace in native/ios.
|
2015-09-19 18:47:28 +00:00
|
|
|
Run this command from your project's root directory.
|
|
|
|
"""
|
|
|
|
else if message.match /EACCES/i
|
2015-10-04 21:54:48 +00:00
|
|
|
"Invalid permissions for opening #{name}.xcworkspace in native/ios"
|
2015-09-19 18:47:28 +00:00
|
|
|
else
|
|
|
|
message
|
2015-08-26 03:48:43 +00:00
|
|
|
|
|
|
|
|
2015-09-19 19:35:00 +00:00
|
|
|
getDeviceList = ->
|
|
|
|
try
|
2015-10-04 19:32:23 +00:00
|
|
|
exec 'xcrun instruments -s devices', true
|
2015-09-19 19:35:00 +00:00
|
|
|
.toString()
|
|
|
|
.split '\n'
|
|
|
|
.filter (line) -> /^i/.test line
|
|
|
|
catch {message}
|
|
|
|
logErr 'Device listing failed: ' + message
|
|
|
|
|
|
|
|
|
2015-10-04 22:53:54 +00:00
|
|
|
startRepl = (name) ->
|
|
|
|
log 'Starting REPL'
|
|
|
|
hasRlwrap =
|
|
|
|
try
|
|
|
|
exec 'type rlwrap'
|
|
|
|
true
|
|
|
|
catch
|
|
|
|
log '
|
|
|
|
Warning: rlwrap is not installed.\nInstall it to make the REPL a much
|
|
|
|
better experience with arrow key support.
|
|
|
|
', 'red'
|
|
|
|
false
|
|
|
|
|
|
|
|
try
|
|
|
|
lein = child.spawn (if hasRlwrap then 'rlwrap' else 'lein'),
|
|
|
|
"#{if hasRlwrap then 'lein ' else ''}trampoline run -m clojure.main -e"
|
|
|
|
.split(' ').concat(
|
|
|
|
"""
|
|
|
|
(require '[cljs.repl :as repl])
|
|
|
|
(require '[ambly.core :as ambly])
|
|
|
|
(let [repl-env (ambly.core/repl-env)]
|
|
|
|
(cljs.repl/repl repl-env
|
|
|
|
:watch \"src\"
|
|
|
|
:watch-fn
|
|
|
|
(fn []
|
|
|
|
(cljs.repl/load-file repl-env
|
2015-10-17 04:37:20 +00:00
|
|
|
\"src/#{toUnderscored name}/core.cljs\"))
|
2015-10-04 22:53:54 +00:00
|
|
|
:analyze-path \"src\"))
|
|
|
|
"""),
|
|
|
|
cwd: process.cwd()
|
|
|
|
env: process.env
|
|
|
|
stdio: 'inherit'
|
|
|
|
|
|
|
|
catch {message}
|
|
|
|
logErr message
|
|
|
|
|
|
|
|
|
2015-10-04 19:37:15 +00:00
|
|
|
cli._name = 'natal'
|
2015-10-04 01:18:26 +00:00
|
|
|
cli.version pkgJson.version
|
2015-08-26 03:48:43 +00:00
|
|
|
|
2015-09-19 17:51:11 +00:00
|
|
|
cli.command 'init <name>'
|
|
|
|
.description 'Create a new ClojureScript React Native project'
|
|
|
|
.action (name) ->
|
|
|
|
if typeof name isnt 'string'
|
|
|
|
logErr '''
|
|
|
|
natal init requires a project name as the first argument.
|
|
|
|
e.g.
|
|
|
|
natal init HelloWorld
|
|
|
|
'''
|
2015-08-26 03:48:43 +00:00
|
|
|
|
2015-10-17 19:20:02 +00:00
|
|
|
ensureFreePort -> init name
|
2015-09-19 17:51:11 +00:00
|
|
|
|
2015-10-04 19:19:04 +00:00
|
|
|
|
2015-09-19 19:35:00 +00:00
|
|
|
cli.command 'launch'
|
2015-10-04 21:56:35 +00:00
|
|
|
.description 'Compile project and run in simulator'
|
2015-09-19 19:35:00 +00:00
|
|
|
.action ->
|
2015-10-17 19:20:02 +00:00
|
|
|
ensureFreePort -> launch readConfig()
|
2015-09-19 19:35:00 +00:00
|
|
|
|
2015-09-19 18:47:28 +00:00
|
|
|
|
2015-10-04 22:54:05 +00:00
|
|
|
cli.command 'repl'
|
|
|
|
.description 'Launch a ClojureScript REPL with background compilation'
|
|
|
|
.action ->
|
|
|
|
startRepl readConfig().name
|
|
|
|
|
|
|
|
|
2015-09-19 19:35:00 +00:00
|
|
|
cli.command 'listdevices'
|
|
|
|
.description 'List available simulator devices by index'
|
|
|
|
.action ->
|
|
|
|
console.log (getDeviceList()
|
2015-10-04 01:22:34 +00:00
|
|
|
.map (line, i) -> "#{i}\t#{line.replace /\[.+\]/, ''}"
|
2015-09-19 19:35:00 +00:00
|
|
|
.join '\n')
|
|
|
|
|
2015-10-04 19:19:04 +00:00
|
|
|
|
2015-10-04 02:36:46 +00:00
|
|
|
cli.command 'setdevice <index>'
|
|
|
|
.description 'Choose simulator device by index'
|
|
|
|
.action (index) ->
|
|
|
|
unless device = getDeviceList()[parseInt index, 10]
|
|
|
|
logErr 'Invalid device index. Run natal listdevices for valid indexes.'
|
|
|
|
|
|
|
|
config = readConfig()
|
|
|
|
config.device = pluckUuid device
|
|
|
|
writeConfig config
|
|
|
|
|
2015-10-04 19:19:04 +00:00
|
|
|
|
|
|
|
cli.command 'xcode'
|
|
|
|
.description 'Open Xcode project'
|
|
|
|
.action ->
|
|
|
|
openXcode readConfig().name
|
|
|
|
|
|
|
|
|
2015-10-04 02:57:22 +00:00
|
|
|
cli.on '*', (command) ->
|
|
|
|
logErr "Unknown command #{command[0]}. See natal --help for valid commands"
|
|
|
|
|
2015-09-19 17:51:11 +00:00
|
|
|
|
2015-10-03 19:36:24 +00:00
|
|
|
unless semver.satisfies process.version[1...], nodeVersion
|
|
|
|
logErr """
|
|
|
|
Natal requires Node.js version #{nodeVersion}
|
|
|
|
You have #{process.version[1...]}
|
|
|
|
"""
|
|
|
|
|
2015-10-04 01:19:46 +00:00
|
|
|
if process.argv.length <= 2
|
|
|
|
cli.outputHelp()
|
|
|
|
else
|
|
|
|
cli.parse process.argv
|