total5 0.0.17-4 → 0.0.17-5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/total5 +6 -6
- package/package.json +1 -1
package/bin/total5
CHANGED
|
@@ -36,13 +36,13 @@ function load(args) {
|
|
|
36
36
|
setTimeout(load, 10, ARGS);
|
|
37
37
|
|
|
38
38
|
FUNC.help = function() {
|
|
39
|
-
console.log('translate
|
|
40
|
-
console.log('minify <filename>
|
|
41
|
-
console.log('bundle <filename>
|
|
42
|
-
console.log('extract <filename>
|
|
43
|
-
console.log('edit <url?id=project>
|
|
39
|
+
console.log('translate : it makes a resource file with a localized dictionary from the current directory');
|
|
40
|
+
console.log('minify <filename> : it minifies .js, .css and .html files');
|
|
41
|
+
console.log('bundle <filename> : it makes a bundle from the current directory');
|
|
42
|
+
console.log('extract <filename> : it extracts a bundle into the current directory');
|
|
43
|
+
console.log('edit <url?id=project> : it opens remote editing of the current directory with the Total.js Code Editor');
|
|
44
44
|
console.log('proxy <server_endpoint> <local_port> : It connects a local port with a remote totaljs proxy server');
|
|
45
|
-
console.log('8000
|
|
45
|
+
console.log('8000 : it starts a web server on port "8000" for the current directory');
|
|
46
46
|
done();
|
|
47
47
|
};
|
|
48
48
|
|