Skip to content

Commit 46b55f5

Browse files
committed
Merge pull request #176 from meandmax/update-deps
Update dependencies & devserver
2 parents 5202ab8 + 9373319 commit 46b55f5

6 files changed

Lines changed: 11 additions & 11 deletions

File tree

demo/js/jquery.lory.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ return /******/ (function(modules) { // webpackBootstrap
285285

286286
position.x = slides[index].offsetLeft * -1;
287287

288-
transitionEndCallback = function () {
288+
transitionEndCallback = function transitionEndCallback() {
289289
translate(slides[index].offsetLeft * -1, 0, undefined);
290290
};
291291
}

demo/js/lory.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ return /******/ (function(modules) { // webpackBootstrap
269269

270270
position.x = slides[index].offsetLeft * -1;
271271

272-
transitionEndCallback = function () {
272+
transitionEndCallback = function transitionEndCallback() {
273273
translate(slides[index].offsetLeft * -1, 0, undefined);
274274
};
275275
}

dist/jquery.lory.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ return /******/ (function(modules) { // webpackBootstrap
285285

286286
position.x = slides[index].offsetLeft * -1;
287287

288-
transitionEndCallback = function () {
288+
transitionEndCallback = function transitionEndCallback() {
289289
translate(slides[index].offsetLeft * -1, 0, undefined);
290290
};
291291
}

dist/lory.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ return /******/ (function(modules) { // webpackBootstrap
269269

270270
position.x = slides[index].offsetLeft * -1;
271271

272-
transitionEndCallback = function () {
272+
transitionEndCallback = function transitionEndCallback() {
273273
translate(slides[index].offsetLeft * -1, 0, undefined);
274274
};
275275
}

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
"main": "./dist/lory.js",
3535
"jsnext:main": "./src/lory.js",
3636
"devDependencies": {
37-
"babel-loader": "6.2.0",
38-
"babel-core": "6.4.0",
37+
"babel-loader": "6.2.1",
38+
"babel-core": "6.4.5",
3939
"babel-preset-es2015": "6.0.15",
4040
"babel-preset-stage-0": "6.0.15",
4141
"chai": "3.4.1",
@@ -46,28 +46,28 @@
4646
"eslint": "1.10.1",
4747
"eslint-config-standard": "4.4.0",
4848
"eslint-plugin-standard": "1.3.1",
49-
"karma": "0.13.16",
49+
"karma": "0.13.19",
5050
"karma-chai": "0.1.0",
5151
"karma-chrome-launcher": "0.2.0",
5252
"karma-firefox-launcher": "0.1.7",
5353
"karma-fixture": "0.2.5",
5454
"karma-html2js-preprocessor": "0.1.0",
5555
"karma-ie-launcher": "0.2.0",
5656
"karma-mocha": "0.2.0",
57-
"karma-mocha-reporter": "1.1.3",
57+
"karma-mocha-reporter": "1.1.5",
5858
"karma-opera-launcher": "0.3.0",
5959
"karma-phantomjs-launcher": "0.2.3",
6060
"karma-safari-launcher": "0.1.1",
6161
"karma-sauce-launcher": "0.3.0",
6262
"mocha": "2.3.4",
6363
"phantomjs": "1.9.18",
64-
"rimraf": "2.4.4",
64+
"rimraf": "2.5.0",
6565
"sauce-connect-launcher": "0.14.0",
6666
"saucelabs": "1.0.1",
6767
"semantic-release": "4.3.5",
6868
"uglify-js": "2.6.1",
6969
"watch": "0.17.1",
70-
"webpack": "1.12.9",
70+
"webpack": "1.12.11",
7171
"webpack-dev-server": "1.14.1"
7272
},
7373
"scripts": {

webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ module.exports = {
1919

2020
devServer: {
2121
contentBase: "./demo",
22+
open: true,
2223
port: 3333,
23-
noInfo: true, // --no-info option
2424
hot: true,
2525
inline: true
2626
}

0 commit comments

Comments
 (0)