the-magic-conch
Advanced tools
Comparing version 1.0.4 to 1.0.5
@@ -7,14 +7,12 @@ var gulp = require("gulp"); | ||
gulp.task("clean", function () { | ||
return gulp.src("./scripts/**/*.js", { read: false }) | ||
.pipe(rimraf()); | ||
return gulp.src("./scripts/**/*.js", { read: false }).pipe(rimraf()); | ||
}); | ||
gulp.task("build", function () { | ||
return gulp.src("src/**/*.js") | ||
.pipe(babel()) | ||
.pipe(gulp.dest("./scripts")); | ||
return gulp.src("src/**/*.js").pipe(babel()).pipe(gulp.dest("./scripts")); | ||
}); | ||
gulp.task("lint", function () { | ||
return gulp.src(["src/**/*.js"]) | ||
return gulp | ||
.src(["src/**/*.js"]) | ||
.pipe(eslint()) | ||
@@ -21,0 +19,0 @@ .pipe(eslint.format()) |
@@ -0,0 +0,0 @@ var Path = require('path'); |
{ | ||
"name": "the-magic-conch", | ||
"version": "1.0.4", | ||
"version": "1.0.5", | ||
"main": "index.js", | ||
@@ -13,5 +13,5 @@ "description": "All hail the magic conch.", | ||
], | ||
"homepage": "https://github.com/smelnicki/magic-conch", | ||
"homepage": "https://github.com/stephenmelnicki/magic-conch", | ||
"bugs": { | ||
"url": "https://github.com/smelnicki/magic-conch/issues" | ||
"url": "https://github.com/stephenmelnicki/magic-conch/issues" | ||
}, | ||
@@ -21,8 +21,8 @@ "license": "MIT", | ||
"name": "Stephen Melnicki", | ||
"email": "smelnicki3@gmail.com", | ||
"url": "http://smelnicki.com" | ||
"email": "stephen@stephenmelnicki.com", | ||
"url": "https://stephenmelnicki.com" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/smelnicki/magic-conch" | ||
"url": "https://github.com/stephenmelnicki/magic-conch" | ||
}, | ||
@@ -29,0 +29,0 @@ "scripts": { |
@@ -9,3 +9,3 @@ ## The magic conch | ||
To bring the magic conch into your life, simply perform the following commands. | ||
To bring the magic conch to life, perform the following commands. | ||
@@ -33,14 +33,4 @@ ``` | ||
## Project | ||
## Notes | ||
Becaues ES6 is the new hotness, I didn't settle for writing coffeescript, or ES5, | ||
like some kind of dirty peasant. And I added a plethora of new features to boot! | ||
Things like cleaning, linting, and transpiling! Oh boy! | ||
Should you want to make the conch more robust, edit `src/conch.js` as you see fit. | ||
When you're done, run `npm start` in your terminal to clean, lint, transpile and test. | ||
In all seriousness, this was just a fun little exercise in learning about github's | ||
hubot. | ||
The inspiration for this particular toy came from spongebob squarepants. Namely, the | ||
@@ -52,6 +42,4 @@ "Club Spongebob" episode from season three. All conch responses were taken from the | ||
Pretty straightforward little toy. Feel free to email me with any questions. | ||
If you want to make one of your own, see github's hubot page at | ||
If you want to make a chat bot of your own, see github's hubot page at | ||
[https://hubot.github.com/](https://hubot.github.com/). | ||
@@ -9,3 +9,3 @@ const responses = [ | ||
"Try asking again.", | ||
"[In a very insulting, sarcastic-like tone] No." | ||
"[In a very insulting, sarcastic-like tone] No.", | ||
]; | ||
@@ -22,2 +22,1 @@ | ||
} | ||
Sorry, the diff of this file is not supported yet
302006
7
41
43