-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 958e1e9
Showing
8 changed files
with
481 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,31 @@ | ||
# Logs | ||
logs | ||
*.log | ||
|
||
# Runtime data | ||
pids | ||
*.pid | ||
*.seed | ||
|
||
# Directory for instrumented libs generated by jscoverage/JSCover | ||
lib-cov | ||
|
||
# Coverage directory used by tools like istanbul | ||
coverage | ||
|
||
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) | ||
.grunt | ||
|
||
# node-waf configuration | ||
.lock-wscript | ||
|
||
# Compiled binary addons (http://nodejs.org/api/addons.html) | ||
build/Release | ||
|
||
# Dependency directory | ||
# Commenting this out is preferred by some people, see | ||
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git- | ||
node_modules | ||
|
||
# Build files | ||
dist |
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 @@ | ||
{ | ||
"indent": 2, | ||
"globalstrict": true, | ||
"newcap": false, | ||
|
||
"node": true, | ||
"browser": true, | ||
|
||
"unused": "vars", | ||
"esnext": true, | ||
|
||
"globals": { | ||
"Promise": true | ||
} | ||
} |
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,7 @@ | ||
'use strict'; | ||
|
||
module.exports = function() { | ||
var tasks = require('gulp-do'); | ||
|
||
return tasks.do('clean').then(tasks.get('node')); | ||
}; |
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'; | ||
|
||
module.exports = function() { | ||
var del = require('del'); | ||
del(['./dist/**/*']); | ||
}; |
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,10 @@ | ||
'use strict'; | ||
|
||
module.exports = function() { | ||
var gulp = require('gulp'); | ||
var esnext = require('gulp-esnext'); | ||
|
||
return gulp.src('./src/**/*.js') | ||
.pipe(esnext()) | ||
.pipe(gulp.dest('./dist')); | ||
}; |
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'); | ||
var tasks = require('gulp-do'); | ||
|
||
tasks.configure(gulp); |
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,26 @@ | ||
{ | ||
"name": "flummox", | ||
"version": "1.0.0", | ||
"description": "An implementation of the Flux architecture.", | ||
"main": "dist/index.js", | ||
"scrpts": { | ||
"prepublish": "./node_modules/.bin/gulp build" | ||
}, | ||
"keywords": [ | ||
"flux", | ||
"facebook", | ||
"react" | ||
], | ||
"author": "Andrew Clark <[email protected]>", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"del": "^0.1.3", | ||
"gulp": "^3.8.9", | ||
"gulp-do": "^1.0.0", | ||
"gulp-esnext": "^1.2.0" | ||
}, | ||
"dependencies": { | ||
"flux": "^2.0.1", | ||
"wolfy87-eventemitter": "^4.2.9" | ||
} | ||
} |
Oops, something went wrong.