-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🏁 updating code for version 0.0.1-beta.1
- Loading branch information
0 parents
commit 34a6dbb
Showing
12 changed files
with
924 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Build folder and log file | ||
build/ | ||
build.log | ||
.DS_Store | ||
build.log | ||
build/* | ||
Resources/* | ||
npm-debug.log | ||
tmp | ||
.map | ||
*.svn | ||
*.suo | ||
*.user | ||
*.tmp | ||
bin | ||
Bin | ||
obj | ||
dirtyflag.txt | ||
.settings/ | ||
.fastdev.lock | ||
build | ||
node_modules | ||
Resources | ||
.ntvs_analysis.dat | ||
npm-debug.log | ||
.*.swp | ||
.lock-* | ||
build/ | ||
dist/* | ||
.vs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
// Place your settings in this file to overwrite default and user settings. | ||
{ | ||
//-------- Editor configuration -------- | ||
|
||
// Configure file associations to languages (e.g. "*.extension": "html"). These have precedence over the default associations of the languages installed. | ||
"files.associations": { | ||
"*.tss": "javascript" | ||
}, | ||
|
||
//-------- Files configuration -------- | ||
|
||
// Configure glob patterns for excluding files and folders. | ||
"files.exclude": { | ||
"**/.git": true, | ||
"**/.svn": true, | ||
"**/.DS_Store": true, | ||
"**/Resources": false, | ||
"**/obj": true | ||
}, | ||
|
||
//-------- Search configuration -------- | ||
|
||
// Configure glob patterns for excluding files and folders in searches. Inherits all glob patterns from the file.exclude setting. | ||
"search.exclude": { | ||
"**/node_modules": true, | ||
"**/bower_components": true, | ||
"**/build": true, | ||
"alloy.d.ts": true, | ||
"titanium.d.ts": true, | ||
"global.d.ts": true, | ||
"**/plugin.py": true, | ||
"**/Resources": true | ||
}, | ||
|
||
// File extensions that can be beautified as HTML. | ||
"beautify.HTMLfiles": [ | ||
"htm", | ||
"html", | ||
"xml" | ||
], | ||
|
||
// File extensions that can be beautified as javascript or JSON. | ||
"beautify.JSfiles": [ | ||
"js", | ||
"json", | ||
"jsbeautifyrc", | ||
"jshintrc", | ||
"tss" | ||
] | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#! /usr/bin/env node | ||
|
||
var yargs = require("yargs"); | ||
var Promise = require("bluebird"); | ||
Promise.promisifyAll(require("fs-extra")); | ||
const _ = require('lodash'); | ||
|
||
require('yargs') | ||
.commandDir('commands', { | ||
recurse: false | ||
}) | ||
.demand(1, "must provide a valid command") | ||
.help() | ||
.argv | ||
|
Oops, something went wrong.