Skip to content

Commit e2e163b

Browse files
committed
Compile babelized and uglified version to dist.
Bumping version to v1.1.0.
1 parent 14eaadf commit e2e163b

File tree

7 files changed

+7
-13
lines changed

7 files changed

+7
-13
lines changed

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,3 @@ install:
55
- npm install
66
before_script:
77
- npm install -g grunt-cli
8-
- npm install -g bower
9-
- bower install

Gruntfile.js

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,7 @@ module.exports = (grunt) => {
1010

1111
pkg: grunt.file.readJSON('package.json'),
1212

13-
clean: {
14-
all: ['dist'],
15-
build: ['dist/jquery.checkboxes-<%= pkg.version %>.js']
16-
},
13+
clean: ['dist'],
1714

1815
watch: {
1916
scripts: {
@@ -86,7 +83,7 @@ module.exports = (grunt) => {
8683
});
8784

8885
grunt.registerTask('default', ['jshint', 'watch']);
89-
grunt.registerTask('build', ['clean:all', 'jshint', 'babel', 'jasmine', 'uglify', 'clean:build']);
86+
grunt.registerTask('build', ['clean', 'jshint', 'babel', 'jasmine', 'uglify']);
9087
grunt.registerTask('test', ['babel', 'jasmine']);
9188
grunt.registerTask('travis', ['jshint', 'babel', 'jasmine']);
9289

bower.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "checkboxes.js",
3-
"version": "1.0.7",
3+
"version": "1.1.0",
44
"homepage": "http://rmariuzzo.github.io/checkboxes.js/",
55
"authors": [
66
"Rubens Mariuzzo <[email protected]>"
@@ -25,8 +25,7 @@
2525
"test",
2626
"tests"
2727
],
28-
"devDependencies": {
29-
"jquery": "~2.1.1",
30-
"jasmine-jquery": "~2.0.3"
28+
"dependencies": {
29+
"jquery": "~2.1.1"
3130
}
3231
}

dist/jquery.checkboxes-1.0.7.min.js

Lines changed: 0 additions & 1 deletion
This file was deleted.
File renamed without changes.

dist/jquery.checkboxes-1.1.0.min.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "checkboxes.js",
3-
"version": "1.0.7",
3+
"version": "1.1.0",
44
"description": "A jQuery plugin that gives you nice powers over your checkboxes.",
55
"keywords": [
66
"checkbox",

0 commit comments

Comments
 (0)