@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.
@@ -1,2 +1,2 @@
1
-
2
- export { }
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":""}
@@ -1,3 +1,4 @@
1
1
  import * as lodash from 'lodash-es';
2
2
  export * from 'lodash-es';
3
- export { lodash as default };
3
+ export default lodash;
4
+ //# sourceMappingURL=esmIndex.d.ts.map
@@ -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"}
@@ -0,0 +1,3 @@
1
+ export * as lodashCjs from './cjsIndex';
2
+ export * from './esmIndex';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -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"}
@@ -0,0 +1,3 @@
1
+ export * as lodashCjs from './cjsIndex';
2
+ export * from './esmIndex';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -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": "^2.19.12",
59
- "@xylabs/tsconfig": "^2.19.12",
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.10.18"
67
+ "version": "2.11.0"
74
68
  }
package/src/index.ts ADDED
@@ -0,0 +1,2 @@
1
+ export * as lodashCjs from './cjsIndex'
2
+ export * from './esmIndex'
@@ -1,2 +0,0 @@
1
-
2
- export { }