-
I have this barrel export file: /** COLLECTIONS */
export { diff as collectionDiff } from 'just-diff';
export { diffApply as collectionDiffApply } from 'just-diff-apply';
export { default as collectionCompare } from 'just-compare';
export { default as collectionClone } from 'just-clone';
export { default as collectionPluck } from 'just-pluck-it';
export { default as collectionFlush } from 'just-flush';
/** OBJECTS */
export { default as objectsExtend } from 'just-extend';
export { default as objectsMerge } from 'just-merge';
export { values as objectsValues } from 'just-values';
export { default as objectsEntries } from 'just-entries';
export { default as objectsPick } from 'just-pick';
export { omit as objectsOmit } from 'just-omit';
export { default as objectsFilterObject } from 'just-filter-object';
export { default as objectsMapObject } from 'just-map-object';
export { default as objectsMapValues } from 'just-map-values';
export { default as objectsMapKeys } from 'just-map-keys';
export { default as objectsReduceObject } from 'just-reduce-object';
export { default as objectsIsEmpty } from 'just-is-empty';
export { default as objectsIsCircular } from 'just-is-circular';
export { default as objectsIsPrimitive } from 'just-is-primitive';
export { default as objectsSafeGet } from 'just-safe-get';
export { default as objectsSafeSet } from 'just-safe-set';
export { default as objectsTypeof } from 'just-typeof';
export { default as objectsFlipObject } from 'just-flip-object';
/** ARRAYS */
export { default as arraysCartesianProduct } from 'just-cartesian-product';
export { default as arraysUnique } from 'just-unique';
export { default as arraysFlattenIt } from 'just-flatten-it';
export { default as arraysIndex } from 'just-index';
export { default as arraysInsert } from 'just-insert';
export { default as arraysIntersect } from 'just-intersect';
export { default as arraysCompact } from 'just-compact';
export { default as arraysLast } from 'just-last';
export { default as arraysTail } from 'just-tail';
export { default as arraysRandom } from 'just-random';
export { default as arraysShuffle } from 'just-shuffle';
export { default as arraysSplit } from 'just-split';
export { default as arraysSplitAt } from 'just-split-at';
export { default as arraysSortBy } from 'just-sort-by';
export { default as arraysPartition } from 'just-partition';
export { default as arraysPermutations } from 'just-permutations';
export { default as arraysRange } from 'just-range';
export { default as arraysRemove } from 'just-remove';
export { default as arraysUnion } from 'just-union';
export { default as arraysZip } from 'just-zip-it';
export { default as arraysGroupBy } from 'just-group-by';
/** STATISTICS */
export { default as statisticsMean } from 'just-mean';
export { default as statisticsMedian } from 'just-median';
export { default as statisticsMode } from 'just-mode';
export { default as statisticsPercentile } from 'just-percentile';
export { default as statisticsVariance } from 'just-variance';
export { default as statisticsStdev } from 'just-stdev';
export { default as statisticsSkewness } from 'just-skewness';
/** STRINGS */
export { default as stringsTemplate } from 'just-template';
export { default as stringsTruncate } from 'just-truncate';
export { default as stringsPrune } from 'just-prune';
export { default as stringsSquash } from 'just-squash';
export { default as stringsLeftPad } from 'just-left-pad';
export { default as stringsRightPad } from 'just-right-pad';
export { default as stringsCamelCase } from 'just-camel-case';
export { default as stringsKebabCase } from 'just-kebab-case';
export { default as stringsSnakeCase } from 'just-snake-case';
export { default as stringsPascalCase } from 'just-pascal-case';
export { default as stringsCapitalize } from 'just-capitalize';
export { default as stringsReplaceAll } from 'just-replace-all';
/** NUMBERS */
export { default as numbersClamp } from 'just-clamp';
export { default as numbersPrime } from 'just-is-prime';
export { default as numbersModulo } from 'just-modulo';
/** FUNCTIONS */
export { default as functionsCompose } from 'just-compose';
export { default as functionsCurry } from 'just-curry-it';
export { default as functionsDemethodize } from 'just-demethodize';
export { default as functionsFlip } from 'just-flip';
export { default as functionsPartial } from 'just-partial-it';
export { default as functionsDebounce } from 'just-debounce-it';
export { default as functionsMemoize } from 'just-memoize';
export { default as functionsMemoizeLast } from 'just-memoize-last';
export { default as functionsRandom } from 'just-random';
export { default as functionsThrottle } from 'just-throttle';
export { once as functionsOnce } from 'just-once'; All these are npm packages. Some come with .d.ts definitions, some don't. Will this plugin inline their d.ts files into the output too? |
Beta Was this translation helpful? Give feedback.
Answered by
Swatinem
Oct 20, 2021
Replies: 1 comment
-
It excludes npm packages by default. You can set the |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
PuruVJ
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It excludes npm packages by default. You can set the
respectExternal
flag to bundle those.