Skip to content
This repository was archived by the owner on Aug 5, 2020. It is now read-only.

Commit 1606c6d

Browse files
committed
Merge pull request #50 from mobify/upgrade-plugin
Upgrading to plugin 2.1.0
2 parents d7d469a + f9b2943 commit 1606c6d

File tree

7 files changed

+12
-10
lines changed

7 files changed

+12
-10
lines changed

bower.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bellows",
3-
"version": "4.1.2",
3+
"version": "4.1.3",
44
"homepage": "https://github.com/mobify/bellows",
55
"authors": [
66
"Mobify <jobs@mobify.com>"
@@ -19,7 +19,7 @@
1919
"./!(src|dist|lib|templates)"
2020
],
2121
"dependencies": {
22-
"plugin": "2.0.0",
22+
"plugin": "2.1.0",
2323
"mobify-velocity": "1.1.2",
2424
"requirejs-text": "~2.0.12",
2525
"requirejs": "~2.1.14"

circle.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ machine:
44

55
test:
66
pre:
7+
- gem install sass -v 3.4
78
- bower install
89
override:
910
- grunt lint

dist/bellows.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
Bellows.__super__.call(this, element, options, Bellows.DEFAULTS);
3030
}
3131

32-
Bellows.VERSION = '4.1.2';
32+
Bellows.VERSION = '4.1.3';
3333

3434
Bellows.DEFAULTS = {
3535
singleItemOpen: false,

dist/bellows.min.js

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

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"type" : "git",
55
"url" : "https://github.com/mobify/bellows.git"
66
},
7-
"version": "4.1.2",
7+
"version": "4.1.3",
88
"description": "A mobile first accordion UI plugin",
99
"devDependencies": {
1010
"grunt": "~0.4.x",
@@ -15,8 +15,8 @@
1515
"grunt-contrib-connect": "~0.3.0",
1616
"grunt-contrib-watch": "~0.5.1",
1717
"grunt-contrib-copy": "~0.4.1",
18-
"grunt-autoprefixer": "~0.8.0",
19-
"grunt-contrib-sass": "~0.7.3",
18+
"grunt-autoprefixer": "~2.0.0",
19+
"grunt-contrib-sass": "~0.8.1",
2020
"grunt-contrib-jshint": "0.10.0",
2121
"grunt-version": "^0.3.0",
2222
"jshint": "2.5.0",

tasks/config/autoprefixer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module.exports = function(grunt) {
22
return {
33
options: {
4-
browsers: ['last 4 versions', 'ie 8', 'ie 9', 'iOS >= 6.0', 'Android 2.3', 'Android 4', 'last 2 Chrome versions']
4+
browsers: ['last 4 versions', 'ie 8', 'ie 9', 'iOS >= 6.0', 'Android >= 2.3', 'last 4 ChromeAndroid versions']
55
},
66
multiple_files: {
77
flatten: true,

tasks/config/sass.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ module.exports = function(grunt) {
22
return {
33
dist: {
44
options: {
5-
style: 'nested'
5+
style: 'nested',
6+
sourcemap: 'none'
67
},
78
files: [{
89
expand: true,

0 commit comments

Comments
 (0)