-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated README. Added .gitignore. Stubbed gulpfile.
- Loading branch information
1 parent
c3f0245
commit 54b52ee
Showing
4 changed files
with
36 additions
and
2 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,9 @@ | ||
|
||
coverage/ | ||
docs/ | ||
node_modules/ | ||
test/actual/ | ||
|
||
*.log | ||
.*.swp | ||
|
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 |
---|---|---|
@@ -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. |
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,6 @@ | ||
'use strict'; | ||
|
||
var gulp = require('gulp'); | ||
|
||
gulp.task('default', function () { | ||
}); |
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,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" | ||
} | ||
} |