diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8f88ae6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,29 @@ +# Logs +logs +*.log +npm-debug.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 +# https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git +node_modules +app/build \ No newline at end of file diff --git a/README.md b/README.md index 9ebcd00..cd9bc34 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,4 @@ buzzer.input(1, 120); console.log(buzzer.output()); ``` -Name your module `sea-d44-fizz-buzz-` and publish it to the npm registry. And, as usual, fork this repo and submit a PR. - - +Name your module `sea-d44-fizz-buzz-` and publish it to the npm registry. And, as usual, fork this repo and submit a PR. \ No newline at end of file diff --git a/app/index.html b/app/index.html new file mode 100644 index 0000000..d772ebe --- /dev/null +++ b/app/index.html @@ -0,0 +1,19 @@ + + + + + Document + + +

Hello

+
+ + + + + +
+

+ + + \ No newline at end of file diff --git a/gulpfile.js b/gulpfile.js new file mode 100644 index 0000000..68dabf7 --- /dev/null +++ b/gulpfile.js @@ -0,0 +1,14 @@ +var gulp = require('gulp'); +var browserify = require('gulp-browserify'); +var FizzBuzz = require('sea-d44-fizz-buzz-bf-2'); + +// Basic usage +gulp.task('run', function() { + // Single entry point to browserify + gulp.src('node_modules/sea-d44-fizz-buzz-bf-2/index.js') + .pipe(browserify({ + insertGlobals : true, + debug : !gulp.env.production + })) + .pipe(gulp.dest('app/build/js')) +}); \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..0226b07 --- /dev/null +++ b/package.json @@ -0,0 +1,26 @@ +{ + "name": "js-module", + "version": "1.0.1", + "description": "## Scenario and Requirements", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/brain11f/fizzbuzz-redux__W5-A3.git" + }, + "keywords": [ + "sea-d44" + ], + "author": "brian finck", + "license": "ISC", + "bugs": { + "url": "https://github.com/brain11f/fizzbuzz-redux__W5-A3/issues" + }, + "homepage": "https://github.com/brain11f/fizzbuzz-redux__W5-A3#readme", + "devDependencies": { + "gulp": "^3.9.0", + "gulp-browserify": "^0.5.1" + } +}