Skip to content

Commit

Permalink
Updated README. Added .gitignore. Stubbed gulpfile.
Browse files Browse the repository at this point in the history
  • Loading branch information
shannonmoeller committed Nov 19, 2014
1 parent c3f0245 commit 54b52ee
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 2 deletions.
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@

coverage/
docs/
node_modules/
test/actual/

*.log
.*.swp

6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# TogaJS Website
Source code for http://togajs.com.

http://togajs.github.io
----

© 2014 Shannon Moeller <me@shannonmoeller.com>. All rights reserved.
6 changes: 6 additions & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
'use strict';

var gulp = require('gulp');

gulp.task('default', function () {
});
17 changes: 17 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"name": "togajs.github.io",
"version": "0.0.1",
"private": true,
"homepage": "https://togajs.com",
"license": "MIT",
"author": "Shannon Moeller <me@shannonmoeller.com> (http://shannonmoeller.com)",
"dependencies": {
},
"devDependencies": {
"coveralls": "^2.11.1",
"gulp": "^3.8.8"
},
"engines": {
"node": ">= 0.10"
}
}

0 comments on commit 54b52ee

Please sign in to comment.