Merge branch 'dev' of codeup.aliyun.com:61c14a7efa282c88e103c23f/oak-domain into dev

This commit is contained in:
Xu Chang 2023-10-10 21:49:18 +08:00
commit 24e23de183
4 changed files with 8 additions and 3 deletions

View File

@ -18,4 +18,5 @@ import union from 'lodash/union';
import difference from 'lodash/difference';
import groupBy from 'lodash/groupBy';
import unionBy from 'lodash/unionBy';
export { unset, pull, uniq, uniqBy, get, set, intersection, omit, merge, cloneDeep, pick, isEqual, union, difference, groupBy, unionBy, };
import pullAll from 'lodash/pullAll';
export { unset, pull, uniq, uniqBy, get, set, intersection, omit, merge, cloneDeep, pick, isEqual, union, difference, groupBy, unionBy, pullAll, };

View File

@ -1,6 +1,6 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.unionBy = exports.groupBy = exports.difference = exports.union = exports.isEqual = exports.pick = exports.cloneDeep = exports.merge = exports.omit = exports.intersection = exports.set = exports.get = exports.uniqBy = exports.uniq = exports.pull = exports.unset = void 0;
exports.pullAll = exports.unionBy = exports.groupBy = exports.difference = exports.union = exports.isEqual = exports.pick = exports.cloneDeep = exports.merge = exports.omit = exports.intersection = exports.set = exports.get = exports.uniqBy = exports.uniq = exports.pull = exports.unset = void 0;
const tslib_1 = require("tslib");
/**
* 避免lodash打包体积过大
@ -38,3 +38,5 @@ const groupBy_1 = tslib_1.__importDefault(require("lodash/groupBy"));
exports.groupBy = groupBy_1.default;
const unionBy_1 = tslib_1.__importDefault(require("lodash/unionBy"));
exports.unionBy = unionBy_1.default;
const pullAll_1 = tslib_1.__importDefault(require("lodash/pullAll"));
exports.pullAll = pullAll_1.default;

View File

@ -26,7 +26,7 @@
"@types/fs-extra": "^9.0.13",
"@types/lodash": "^4.14.182",
"@types/mocha": "^8.2.0",
"@types/node": "^20.6.0",
"@types/node": "^20.6.1",
"@types/node-schedule": "^2.1.0",
"@types/react": "^17.0.2",
"@types/uuid": "^8.3.0",

View File

@ -18,6 +18,7 @@ import union from 'lodash/union';
import difference from 'lodash/difference';
import groupBy from 'lodash/groupBy';
import unionBy from 'lodash/unionBy';
import pullAll from 'lodash/pullAll';
export {
unset,
@ -36,4 +37,5 @@ export {
difference,
groupBy,
unionBy,
pullAll,
};