Skip to content

Commit 8e06f94

Browse files
chore(release): set package.json to 1.1.6 [skip ci]
## [1.1.6](v1.1.5...v1.1.6) (2022-01-08) ### Bug Fixes * add dist to git assets ([937e325](937e325)) * added coverage badge ([482b184](482b184))
1 parent 1407673 commit 8e06f94

14 files changed

+22
-14
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## [1.1.6](https://github.com/kouts/vue-set-path/compare/v1.1.5...v1.1.6) (2022-01-08)
2+
3+
4+
### Bug Fixes
5+
6+
* add dist to git assets ([937e325](https://github.com/kouts/vue-set-path/commit/937e325829afbe1ba94f6d6a5e03f57fb996406d))
7+
* added coverage badge ([482b184](https://github.com/kouts/vue-set-path/commit/482b184e67879ed31e2c4b0c5ccfdd83b9cfbe60))
8+
19
## [1.1.5](https://github.com/kouts/vue-set-path/compare/v1.1.4...v1.1.5) (2021-09-06)
210

311

coverage/coverage-summary.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{"total": {"lines":{"total":53,"covered":53,"skipped":0,"pct":100},"statements":{"total":55,"covered":55,"skipped":0,"pct":100},"functions":{"total":10,"covered":10,"skipped":0,"pct":100},"branches":{"total":35,"covered":33,"skipped":0,"pct":94.29}}
2-
,"/var/www/vue-set-path/src/utils.js": {"lines":{"total":17,"covered":17,"skipped":0,"pct":100},"functions":{"total":5,"covered":5,"skipped":0,"pct":100},"statements":{"total":18,"covered":18,"skipped":0,"pct":100},"branches":{"total":13,"covered":12,"skipped":0,"pct":92.31}}
3-
,"/var/www/vue-set-path/src/vueSetPath.js": {"lines":{"total":36,"covered":36,"skipped":0,"pct":100},"functions":{"total":5,"covered":5,"skipped":0,"pct":100},"statements":{"total":37,"covered":37,"skipped":0,"pct":100},"branches":{"total":22,"covered":21,"skipped":0,"pct":95.45}}
2+
,"/home/runner/work/vue-set-path/vue-set-path/src/utils.js": {"lines":{"total":17,"covered":17,"skipped":0,"pct":100},"functions":{"total":5,"covered":5,"skipped":0,"pct":100},"statements":{"total":18,"covered":18,"skipped":0,"pct":100},"branches":{"total":13,"covered":12,"skipped":0,"pct":92.31}}
3+
,"/home/runner/work/vue-set-path/vue-set-path/src/vueSetPath.js": {"lines":{"total":36,"covered":36,"skipped":0,"pct":100},"functions":{"total":5,"covered":5,"skipped":0,"pct":100},"statements":{"total":37,"covered":37,"skipped":0,"pct":100},"branches":{"total":22,"covered":21,"skipped":0,"pct":95.45}}
44
}

dist/cjs/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Object.defineProperty(exports, '__esModule', { value: true });
44

5-
var utils = require('./utils-72831914.js');
5+
var utils = require('./utils-e623fd6f.js');
66
var vueSetPath = require('./vueSetPath.js');
77
require('vue');
88

dist/cjs/utils-72831914.js renamed to dist/cjs/utils-e623fd6f.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ function isArray(arr) {
2626
return Array.isArray(arr);
2727
}
2828
function splitPath(str) {
29-
var regex = /([\w-]+)|\[([^\]]+)\]/g;
29+
var regex = /([\w\s-]+)|\[([^\]]+)\]/g;
3030
var result = [];
3131
var path;
3232

dist/cjs/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Object.defineProperty(exports, '__esModule', { value: true });
44

5-
var utils = require('./utils-72831914.js');
5+
var utils = require('./utils-e623fd6f.js');
66

77

88

dist/cjs/vueSetPath.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Object.defineProperty(exports, '__esModule', { value: true });
44

5-
var utils = require('./utils-72831914.js');
5+
var utils = require('./utils-e623fd6f.js');
66
var Vue = require('vue');
77

88
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }

dist/es/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
export { g as getByPath, b as isArray, a as isNumeric, i as isObject, s as splitPath } from './utils-3a98f9e7.js';
1+
export { g as getByPath, b as isArray, a as isNumeric, i as isObject, s as splitPath } from './utils-34ba8053.js';
22
export { deleteMany, deleteOne, setMany, setOne } from './vueSetPath.js';
33
import 'vue';

dist/es/utils-3a98f9e7.js renamed to dist/es/utils-34ba8053.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ function isArray(arr) {
2424
return Array.isArray(arr);
2525
}
2626
function splitPath(str) {
27-
var regex = /([\w-]+)|\[([^\]]+)\]/g;
27+
var regex = /([\w\s-]+)|\[([^\]]+)\]/g;
2828
var result = [];
2929
var path;
3030

dist/es/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export { g as getByPath, b as isArray, a as isNumeric, i as isObject, s as splitPath } from './utils-3a98f9e7.js';
1+
export { g as getByPath, b as isArray, a as isNumeric, i as isObject, s as splitPath } from './utils-34ba8053.js';

dist/es/vueSetPath.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { s as splitPath, _ as _typeof, b as isArray, a as isNumeric, i as isObject, g as getByPath } from './utils-3a98f9e7.js';
1+
import { s as splitPath, _ as _typeof, b as isArray, a as isNumeric, i as isObject, g as getByPath } from './utils-34ba8053.js';
22
import Vue from 'vue';
33

44
var setOne = function setOne(obj, pathStr, value) {

0 commit comments

Comments
 (0)