Skip to content

Commit

Permalink
Added package management tools
Browse files Browse the repository at this point in the history
Added package.json, bower.json.
Installed mediaelement, jquery and grunt, added as dependencies
Updated .gitignore to include node_modules and bower_components
  • Loading branch information
blendermf committed Apr 20, 2015
1 parent 72501c8 commit 594ccf7
Show file tree
Hide file tree
Showing 4 changed files with 62 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,6 @@
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
Thumbs.db
node_modules
bower_components
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({
pkg: grunt.file.readJSON('package.json'),
/*build: {
src: 'src/<%= pkg.name %>.js',
dest: 'build/<%= pkg.name %>.min.js'
}*/
}
});

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

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

};
22 changes: 22 additions & 0 deletions bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"name": "podcast-plugin",
"version": "1.0.3",
"homepage": "https://github.com/cosmicradiotv/podcast-plugin",
"authors": [
"CosmicRadio.TV <[email protected]>"
],
"description": "A platform for podcast networks using OctoberCMS",
"main": "Plugin.php",
"license": "MIT",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
],
"dependencies": {
"mediaelement": "~2.16.4",
"jquery": "~2.1.3"
}
}
18 changes: 18 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"name": "podcast-plugin",
"version": "1.0.3",
"description": "A platform for podcast networks using OctoberCMS",
"repository": {
"type": "git",
"url": "git+https://github.com/cosmicradiotv/podcast-plugin.git"
},
"author": "CosmicRadio.TV <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cosmicradiotv/podcast-plugin/issues"
},
"homepage": "https://github.com/cosmicradiotv/podcast-plugin#readme",
"devDependencies": {
"grunt": "^0.4.5"
}
}

0 comments on commit 594ccf7

Please sign in to comment.