소스 검색

release: v3.6.1

Kia King Ishii 4 년 전
부모
커밋
379986268e
9개의 변경된 파일29개의 추가작업 그리고 23개의 파일을 삭제
  1. 6 0
      CHANGELOG.md
  2. 2 2
      dist/logger.js
  3. 4 4
      dist/vuex.common.js
  4. 4 4
      dist/vuex.esm.browser.js
  5. 2 2
      dist/vuex.esm.browser.min.js
  6. 4 4
      dist/vuex.esm.js
  7. 4 4
      dist/vuex.js
  8. 2 2
      dist/vuex.min.js
  9. 1 1
      package.json

+ 6 - 0
CHANGELOG.md

@@ -1,3 +1,9 @@
+## [3.6.1](https://github.com/vuejs/vuex/compare/v3.6.0...v3.6.1) (2021-01-26)
+
+### Bug Fixes
+
+* fix tree shaking notworking in webpack bundle ([#1906](https://github.com/vuejs/vuex/issues/1906)) ([1dc2d1f](https://github.com/vuejs/vuex/commit/1dc2d1f21de42138053ea3281dde05487642a76d))
+
 # [3.6.0](https://github.com/vuejs/vuex/compare/v3.5.1...v3.6.0) (2020-11-25)
 
 ### Bug Fixes

+ 2 - 2
dist/logger.js

@@ -1,6 +1,6 @@
 /*!
- * vuex v3.6.0
- * (c) 2020 Evan You
+ * vuex v3.6.1
+ * (c) 2021 Evan You
  * @license MIT
  */
 (function (global, factory) {

+ 4 - 4
dist/vuex.common.js

@@ -1,6 +1,6 @@
 /*!
- * vuex v3.6.0
- * (c) 2020 Evan You
+ * vuex v3.6.1
+ * (c) 2021 Evan You
  * @license MIT
  */
 'use strict';
@@ -967,7 +967,7 @@ var mapState = normalizeNamespace(function (namespace, states) {
 /**
  * Reduce the code which written in Vue.js for committing the mutation
  * @param {String} [namespace] - Module's namespace
- * @param {Object|Array} mutations # Object's item can be a function which accept `commit` function as the first param, it can accept anthor params. You can commit mutation and do any other things in this function. specially, You need to pass anthor params from the mapped function.
+ * @param {Object|Array} mutations # Object's item can be a function which accept `commit` function as the first param, it can accept another params. You can commit mutation and do any other things in this function. specially, You need to pass anthor params from the mapped function.
  * @return {Object}
  */
 var mapMutations = normalizeNamespace(function (namespace, mutations) {
@@ -1232,7 +1232,7 @@ function pad (num, maxLength) {
 var index_cjs = {
   Store: Store,
   install: install,
-  version: '3.6.0',
+  version: '3.6.1',
   mapState: mapState,
   mapMutations: mapMutations,
   mapGetters: mapGetters,

+ 4 - 4
dist/vuex.esm.browser.js

@@ -1,6 +1,6 @@
 /*!
- * vuex v3.6.0
- * (c) 2020 Evan You
+ * vuex v3.6.1
+ * (c) 2021 Evan You
  * @license MIT
  */
 function applyMixin (Vue) {
@@ -938,7 +938,7 @@ const mapState = normalizeNamespace((namespace, states) => {
 /**
  * Reduce the code which written in Vue.js for committing the mutation
  * @param {String} [namespace] - Module's namespace
- * @param {Object|Array} mutations # Object's item can be a function which accept `commit` function as the first param, it can accept anthor params. You can commit mutation and do any other things in this function. specially, You need to pass anthor params from the mapped function.
+ * @param {Object|Array} mutations # Object's item can be a function which accept `commit` function as the first param, it can accept another params. You can commit mutation and do any other things in this function. specially, You need to pass anthor params from the mapped function.
  * @return {Object}
  */
 const mapMutations = normalizeNamespace((namespace, mutations) => {
@@ -1187,7 +1187,7 @@ function pad (num, maxLength) {
 var index = {
   Store,
   install,
-  version: '3.6.0',
+  version: '3.6.1',
   mapState,
   mapMutations,
   mapGetters,

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 2 - 2
dist/vuex.esm.browser.min.js


+ 4 - 4
dist/vuex.esm.js

@@ -1,6 +1,6 @@
 /*!
- * vuex v3.6.0
- * (c) 2020 Evan You
+ * vuex v3.6.1
+ * (c) 2021 Evan You
  * @license MIT
  */
 function applyMixin (Vue) {
@@ -965,7 +965,7 @@ var mapState = normalizeNamespace(function (namespace, states) {
 /**
  * Reduce the code which written in Vue.js for committing the mutation
  * @param {String} [namespace] - Module's namespace
- * @param {Object|Array} mutations # Object's item can be a function which accept `commit` function as the first param, it can accept anthor params. You can commit mutation and do any other things in this function. specially, You need to pass anthor params from the mapped function.
+ * @param {Object|Array} mutations # Object's item can be a function which accept `commit` function as the first param, it can accept another params. You can commit mutation and do any other things in this function. specially, You need to pass anthor params from the mapped function.
  * @return {Object}
  */
 var mapMutations = normalizeNamespace(function (namespace, mutations) {
@@ -1230,7 +1230,7 @@ function pad (num, maxLength) {
 var index = {
   Store: Store,
   install: install,
-  version: '3.6.0',
+  version: '3.6.1',
   mapState: mapState,
   mapMutations: mapMutations,
   mapGetters: mapGetters,

+ 4 - 4
dist/vuex.js

@@ -1,6 +1,6 @@
 /*!
- * vuex v3.6.0
- * (c) 2020 Evan You
+ * vuex v3.6.1
+ * (c) 2021 Evan You
  * @license MIT
  */
 (function (global, factory) {
@@ -971,7 +971,7 @@
   /**
    * Reduce the code which written in Vue.js for committing the mutation
    * @param {String} [namespace] - Module's namespace
-   * @param {Object|Array} mutations # Object's item can be a function which accept `commit` function as the first param, it can accept anthor params. You can commit mutation and do any other things in this function. specially, You need to pass anthor params from the mapped function.
+   * @param {Object|Array} mutations # Object's item can be a function which accept `commit` function as the first param, it can accept another params. You can commit mutation and do any other things in this function. specially, You need to pass anthor params from the mapped function.
    * @return {Object}
    */
   var mapMutations = normalizeNamespace(function (namespace, mutations) {
@@ -1236,7 +1236,7 @@
   var index_cjs = {
     Store: Store,
     install: install,
-    version: '3.6.0',
+    version: '3.6.1',
     mapState: mapState,
     mapMutations: mapMutations,
     mapGetters: mapGetters,

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 2 - 2
dist/vuex.min.js


+ 1 - 1
package.json

@@ -1,6 +1,6 @@
 {
   "name": "vuex",
-  "version": "3.6.0",
+  "version": "3.6.1",
   "description": "state management for Vue.js",
   "main": "dist/vuex.common.js",
   "exports": {

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.