• R/O
  • HTTP
  • SSH
  • HTTPS

提交

标签
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

wiki style document editor


Commit MetaInfo

修订版fdc54d3a77c040fbc3224459add0b122f5396e34 (tree)
时间2014-08-25 19:43:32
作者hylom <hylom@hylo...>
Commiterhylom

Log Message

add export.js

更改概述

差异

--- /dev/null
+++ b/tools/export/export.js
@@ -0,0 +1,24 @@
1+// export.js
2+/*
3+ * usage:
4+ * node export.js <target directory> <output directory>
5+ */
6+
7+var config = require('../../config');
8+
9+var usage = 'node export.js <target directory> <output directory>';
10+
11+function export(target, output) {
12+
13+}
14+
15+
16+if (require.main == module) {
17+ if (process.argv.length < 4) {
18+ process.stdout.write(usage + '\n');
19+ process.exit(1);
20+ }
21+ var target = process.argv[2];
22+ var output = process.argv[3];
23+ export(target, output);
24+}