@vanillaes/absurdum 2.0.12 → 3.1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vanillaes/absurdum",
3
- "version": "2.0.12",
3
+ "version": "3.1.0",
4
4
  "description": "Absurdum - The Ridiculous Application of Reduce",
5
5
  "keywords": [
6
6
  "esm",
@@ -26,9 +26,9 @@
26
26
  "type": "module",
27
27
  "exports": {
28
28
  ".": {
29
- "import": "./index.js",
30
- "types": "./index.d.ts",
31
- "browser": "./index.min.js"
29
+ "import": "./src/index.js",
30
+ "types": "./src/index.d.ts",
31
+ "browser": "./src/index.min.js"
32
32
  },
33
33
  "./arrays": {
34
34
  "import": "./src/arrays/index.js",
package/src/index.d.ts ADDED
@@ -0,0 +1,3 @@
1
+ export * as arrays from "./arrays/index.js";
2
+ export * as strings from "./strings/index.js";
3
+ export * as objects from "./objects/index.js";
package/src/index.js ADDED
@@ -0,0 +1,4 @@
1
+ /* @ts-self-types="./index.d.ts" */
2
+ export * as arrays from './arrays/index.js'
3
+ export * as strings from './strings/index.js'
4
+ export * as objects from './objects/index.js'
package/index.d.ts DELETED
@@ -1,4 +0,0 @@
1
- import * as arrays from './src/arrays/index.js';
2
- import * as strings from './src/strings/index.js';
3
- import * as objects from './src/objects/index.js';
4
- export { arrays, strings, objects };
package/index.js DELETED
@@ -1,4 +0,0 @@
1
- /* @ts-self-types="./index.d.ts" */
2
- export * as arrays from './src/arrays/index.js'
3
- export * as strings from './src/strings/index.js'
4
- export * as objects from './src/objects/index.js'
File without changes