Skip to content

Commit 4db6b75

Browse files
committed
[build] 0.6.2
1 parent d5fdaea commit 4db6b75

File tree

2 files changed

+35
-9
lines changed

2 files changed

+35
-9
lines changed

dist/vuex.js

+33-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Vuex v0.6.1
2+
* Vuex v0.6.2
33
* (c) 2016 Evan You
44
* Released under the MIT License.
55
*/
@@ -40,6 +40,16 @@
4040
};
4141
}();
4242

43+
babelHelpers.toConsumableArray = function (arr) {
44+
if (Array.isArray(arr)) {
45+
for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) arr2[i] = arr[i];
46+
47+
return arr2;
48+
} else {
49+
return Array.from(arr);
50+
}
51+
};
52+
4353
babelHelpers;
4454

4555
/**
@@ -298,6 +308,9 @@
298308
// use a Vue instance to store the state tree
299309
// suppress warnings just in case the user has added
300310
// some funky global mixins
311+
if (!Vue) {
312+
throw new Error('[vuex] must call Vue.use(Vuex) before creating a store instance.');
313+
}
301314
var silent = Vue.config.silent;
302315
Vue.config.silent = true;
303316
this._vm = new Vue({
@@ -337,6 +350,11 @@
337350
payload[_key2 - 1] = arguments[_key2];
338351
}
339352

353+
// compatibility for object actions, e.g. FSA
354+
if ((typeof type === 'undefined' ? 'undefined' : babelHelpers.typeof(type)) === 'object' && type.type && arguments.length === 1) {
355+
payload = [type];
356+
type = type.type;
357+
}
340358
var mutation = this._mutations[type];
341359
var prevSnapshot = this._prevSnapshot;
342360
var state = this.state;
@@ -347,10 +365,10 @@
347365
// apply the mutation
348366
if (Array.isArray(mutation)) {
349367
mutation.forEach(function (m) {
350-
return m.apply(undefined, [state].concat(payload));
368+
return m.apply(undefined, [state].concat(babelHelpers.toConsumableArray(payload)));
351369
});
352370
} else {
353-
mutation.apply(undefined, [state].concat(payload));
371+
mutation.apply(undefined, [state].concat(babelHelpers.toConsumableArray(payload)));
354372
}
355373
this._dispatching = false;
356374
// invoke middlewares
@@ -393,7 +411,7 @@
393411
}
394412

395413
/**
396-
* Hot update actions and mutations.
414+
* Hot update mutations & modules.
397415
*
398416
* @param {Object} options
399417
* - {Object} [mutations]
@@ -433,16 +451,19 @@
433451
* Bind mutations for each module to its sub tree and
434452
* merge them all into one final mutations map.
435453
*
436-
* @param {Object} modules
454+
* @param {Object} updatedModules
437455
*/
438456

439457
}, {
440458
key: '_setupModuleMutations',
441-
value: function _setupModuleMutations(modules) {
442-
this._modules = modules;
459+
value: function _setupModuleMutations(updatedModules) {
460+
var modules = this._modules;
443461
var getPath = Vue.parsers.path.getPath;
444462

445463
var allMutations = [this._rootMutations];
464+
Object.keys(updatedModules).forEach(function (key) {
465+
modules[key] = updatedModules[key];
466+
});
446467
Object.keys(modules).forEach(function (key) {
447468
var module = modules[key];
448469
if (!module || !module.mutations) return;
@@ -535,6 +556,11 @@
535556
override(Vue);
536557
}
537558

559+
// auto install in dist mode
560+
if (typeof window !== 'undefined' && window.Vue) {
561+
install(window.Vue);
562+
}
563+
538564
function createLogger() {
539565
console.warn('[vuex] Vuex.createLogger has been deprecated.' + 'Use `import createLogger from \'vuex/logger\' instead.');
540566
}

dist/vuex.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)