@xylabs/lodash 2.10.18 → 2.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjsIndex.d.ts +2 -2
- package/dist/cjsIndex.d.ts.map +1 -0
- package/dist/esmIndex.d.ts +2 -1
- package/dist/esmIndex.d.ts.map +1 -0
- package/dist/index.d.mts +3 -0
- package/dist/index.d.mts.map +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +20 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +12 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +3 -9
- package/src/index.ts +2 -0
- package/dist/cjsIndex.d.mts +0 -2
- package/dist/cjsIndex.js +0 -5524
- package/dist/cjsIndex.js.map +0 -1
- package/dist/cjsIndex.mjs +0 -5528
- package/dist/cjsIndex.mjs.map +0 -1
- package/dist/esmIndex.d.mts +0 -3
- package/dist/esmIndex.js +0 -9119
- package/dist/esmIndex.js.map +0 -1
- package/dist/esmIndex.mjs +0 -8778
- package/dist/esmIndex.mjs.map +0 -1
- package/tsup.config.ts +0 -16
package/dist/cjsIndex.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
export {};
|
|
2
|
+
//# sourceMappingURL=cjsIndex.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cjsIndex.d.ts","sourceRoot":"","sources":["../src/cjsIndex.ts"],"names":[],"mappings":""}
|
package/dist/esmIndex.d.ts
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"esmIndex.d.ts","sourceRoot":"","sources":["../src/esmIndex.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,MAAM,WAAW,CAAA;AACnC,cAAc,WAAW,CAAA;AAGzB,eAAe,MAAM,CAAA"}
|
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,SAAS,MAAM,YAAY,CAAA;AACvC,cAAc,YAAY,CAAA"}
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,SAAS,MAAM,YAAY,CAAA;AACvC,cAAc,YAAY,CAAA"}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var lodash$1 = require('lodash');
|
|
4
|
+
var lodash = require('lodash-es');
|
|
5
|
+
|
|
6
|
+
/* eslint-disable no-restricted-imports */
|
|
7
|
+
module.exports = lodash$1;
|
|
8
|
+
|
|
9
|
+
var cjsIndex = /*#__PURE__*/Object.freeze({
|
|
10
|
+
__proto__: null
|
|
11
|
+
});
|
|
12
|
+
|
|
13
|
+
exports.lodashCjs = cjsIndex;
|
|
14
|
+
Object.keys(lodash).forEach(function (k) {
|
|
15
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
16
|
+
enumerable: true,
|
|
17
|
+
get: function () { return lodash[k]; }
|
|
18
|
+
});
|
|
19
|
+
});
|
|
20
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;"}
|
package/dist/index.mjs
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import lodash$1 from 'lodash';
|
|
2
|
+
export * from 'lodash-es';
|
|
3
|
+
|
|
4
|
+
/* eslint-disable no-restricted-imports */
|
|
5
|
+
module.exports = lodash$1;
|
|
6
|
+
|
|
7
|
+
var cjsIndex = /*#__PURE__*/Object.freeze({
|
|
8
|
+
__proto__: null
|
|
9
|
+
});
|
|
10
|
+
|
|
11
|
+
export { cjsIndex as lodashCjs };
|
|
12
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;"}
|
package/package.json
CHANGED
|
@@ -33,10 +33,6 @@
|
|
|
33
33
|
},
|
|
34
34
|
"main": "dist/cjsIndex.js",
|
|
35
35
|
"module": "dist/esmIndex.mjs",
|
|
36
|
-
"scripts": {
|
|
37
|
-
"package-compile": "tsup && publint",
|
|
38
|
-
"package-recompile": "tsup && publint"
|
|
39
|
-
},
|
|
40
36
|
"homepage": "https://xylabs.com",
|
|
41
37
|
"keywords": [
|
|
42
38
|
"xylabs",
|
|
@@ -55,10 +51,8 @@
|
|
|
55
51
|
"devDependencies": {
|
|
56
52
|
"@types/lodash": "^4.14.198",
|
|
57
53
|
"@types/lodash-es": "^4.17.9",
|
|
58
|
-
"@xylabs/ts-scripts-yarn3": "^
|
|
59
|
-
"@xylabs/tsconfig": "^
|
|
60
|
-
"publint": "^0.2.2",
|
|
61
|
-
"tsup": "^7.2.0",
|
|
54
|
+
"@xylabs/ts-scripts-yarn3": "^3.0.0-rc.15",
|
|
55
|
+
"@xylabs/tsconfig": "^3.0.0-rc.15",
|
|
62
56
|
"typescript": "^5.2.2"
|
|
63
57
|
},
|
|
64
58
|
"publishConfig": {
|
|
@@ -70,5 +64,5 @@
|
|
|
70
64
|
},
|
|
71
65
|
"sideEffects": false,
|
|
72
66
|
"types": "./dist/esmIndex.d.ts",
|
|
73
|
-
"version": "2.
|
|
67
|
+
"version": "2.11.0"
|
|
74
68
|
}
|
package/src/index.ts
ADDED
package/dist/cjsIndex.d.mts
DELETED