Skip to content

Commit

Permalink
🏁 updating code for version 0.0.1-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
brentonhouse committed Sep 3, 2016
0 parents commit 34a6dbb
Show file tree
Hide file tree
Showing 12 changed files with 924 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .gitignore
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
51 changes: 51 additions & 0 deletions .vscode/settings.json
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"
]

}
15 changes: 15 additions & 0 deletions cli.js
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

Loading

0 comments on commit 34a6dbb

Please sign in to comment.