Skip to content

Commit

Permalink
Merge pull request #4 from crobinson42/initial-construction
Browse files Browse the repository at this point in the history
Initial construction
  • Loading branch information
crobinson42 committed Aug 16, 2015
2 parents a683788 + 6afe4df commit 5e17694
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 0 deletions.
19 changes: 19 additions & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
module.exports = function(grunt) {

// Project configuration.
grunt.initConfig({
uglify: {
build: {
src: 'eventSky.js',
dest: 'src/eventSky.min.js'
}
}
});

// Load the plugin that provides the "uglify" task.
grunt.loadNpmTasks('grunt-contrib-uglify');

// Default task(s).
grunt.registerTask('default', ['uglify']);

};
1 change: 1 addition & 0 deletions eventSky.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
/*
-readme about window.eventSky
-write readme info for init() & firehose
-add firehose to each method
*/

Expand Down
27 changes: 27 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"name": "event-sky",
"version": "0.1.0",
"description": "front-end event pub/sub utility",
"main": "eventSky.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/crobinson42/event-sky.git"
},
"keywords": [
"event",
"pub/sub"
],
"author": "cory robinson",
"license": "MIT",
"bugs": {
"url": "https://github.com/crobinson42/event-sky/issues"
},
"homepage": "https://github.com/crobinson42/event-sky",
"dependencies": {
"grunt": "^0.4.5",
"grunt-contrib-uglify": "^0.9.1"
}
}
1 change: 1 addition & 0 deletions src/eventSky.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5e17694

Please sign in to comment.