Skip to content
This repository has been archived by the owner on Jun 7, 2018. It is now read-only.

Commit

Permalink
chore: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
troch committed Oct 26, 2015
1 parent 374a8f8 commit da07cd9
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 9 deletions.
3 changes: 1 addition & 2 deletions dist/amd/router5-listeners.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ define('router5ListenersPlugin', [], function () {
}, []);
}

var i;
var i = undefined;
var fromStateIds = fromState ? nameToIDs(fromState.name) : [];
var toStateIds = nameToIDs(toState.name);
var maxI = Math.min(fromStateIds.length, toStateIds.length);
Expand All @@ -58,7 +58,6 @@ define('router5ListenersPlugin', [], function () {
}



var pluginName = 'LISTENERS';

function listenersPlugin() {
Expand Down
2 changes: 1 addition & 1 deletion dist/amd/router5-listeners.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions dist/browser/router5-listeners.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
}, []);
}

var i;
var i = undefined;
var fromStateIds = fromState ? nameToIDs(fromState.name) : [];
var toStateIds = nameToIDs(toState.name);
var maxI = Math.min(fromStateIds.length, toStateIds.length);
Expand All @@ -58,7 +58,6 @@
}



var pluginName = 'LISTENERS';

function listenersPlugin() {
Expand Down
2 changes: 1 addition & 1 deletion dist/browser/router5-listeners.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function build(modules, dest) {
function buildBundle(dest, wrapper) {
return function() {
return gulp
.src(['node_modules/router5.transition-path/index.js'].concat(files))
.src(['node_modules/router5.transition-path/modules/index.js'].concat(files))
.pipe(babel({modules: 'ignore', blacklist: ['strict'], auxiliaryCommentBefore: 'istanbul ignore next'}))
.pipe(bundle(dest, wrapper))
.pipe(gulp.dest('dist'))
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,6 @@
"yargs": "^3.27.0"
},
"dependencies": {
"router5.transition-path": "^1.0.0"
"router5.transition-path": "^1.0.1"
}
}
1 change: 0 additions & 1 deletion scripts/bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ module.exports = function bundle(destFolder, wrapper) {
.join('\n')
.split('\n')
.filter(function(line) {
if (/^module.exports/.test(line)) return false;
for (var i = 0; i < babelHelpers.length; i += 1) {
if (babelHelpers[i].regex.test(line)) {
if (babelHelpers[i].found === false) {
Expand Down

0 comments on commit da07cd9

Please sign in to comment.