-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Now icons are setted as CSS classes. * Fixed minification errors. * Added gitignore, package.json and Gruntfile.
- Loading branch information
Showing
7 changed files
with
68 additions
and
16 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 @@ | ||
/node_modules/ |
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
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,35 @@ | ||
module.exports = function(grunt) { | ||
grunt.initConfig({ | ||
pkg: grunt.file.readJSON('package.json'), | ||
release: { | ||
options: { | ||
//bump: false, //default: true | ||
//file: 'component.json', //default: package.json | ||
//add: false, //default: true | ||
//commit: false, //default: true | ||
//tag: false, //default: true | ||
//push: false, //default: true | ||
//pushTags: false, //default: true | ||
//npmtag: true, //default: no tag | ||
//folder: 'folder/to/publish/to/npm', //default project root | ||
//commitMessage: 'check out my release <%= version %>', //default: 'release <%= version %>' | ||
//tagMessage: 'tagging version <%= version %>', //default: 'Version <%= version %>', | ||
|
||
file: 'bower.json', //default: package.json | ||
npm: false, //default: true | ||
tagName: 'v<%= version %>', //default: '<%= version %>' | ||
github: { | ||
repo: '2fdevs/bower-videogular-overlay-play', //put your user/repo here | ||
usernameVar: 'GITHUB_USERNAME', //ENVIRONMENT VARIABLE that contains Github username | ||
passwordVar: 'GITHUB_PASSWORD' //ENVIRONMENT VARIABLE that contains Github password | ||
} | ||
} | ||
}, | ||
}); | ||
|
||
grunt.loadNpmTasks('grunt-release'); | ||
|
||
grunt.registerTask('major', ['release:major']); | ||
grunt.registerTask('minor', ['release:minor']); | ||
grunt.registerTask('patch', ['release:patch']); | ||
}; |
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 @@ | ||
{ | ||
"name": "videogular", | ||
"version": "0.3.0", | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"grunt": "~0.4.1", | ||
"grunt-release": "~0.7.0" | ||
}, | ||
"engines": { | ||
"node": ">=0.8.0" | ||
}, | ||
"scripts": { | ||
"test": "grunt test" | ||
} | ||
} |