@kaumlaut/pure 0.1.9 → 0.1.11

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,3 +1,3 @@
1
1
  import { Effect } from '../index';
2
- export declare function index(): Effect<any>;
2
+ export declare function none(): Effect<any>;
3
3
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/runtime/effect/none/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,MAAM,EAAY,MAAM,UAAU,CAAA;AAE3C,wBAAgB,KAAK,IAAI,MAAM,CAAC,GAAG,CAAC,CAInC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/runtime/effect/none/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,MAAM,EAAY,MAAM,UAAU,CAAA;AAE3C,wBAAgB,IAAI,IAAI,MAAM,CAAC,GAAG,CAAC,CAIlC"}
@@ -1,6 +1,6 @@
1
1
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
2
2
  import { withName } from '../index';
3
- export function index() {
3
+ export function none() {
4
4
  return withName('none', () => {
5
5
  return null;
6
6
  });
package/package.json CHANGED
@@ -1,6 +1,9 @@
1
1
  {
2
2
  "name": "@kaumlaut/pure",
3
- "version": "0.1.9",
3
+ "version": "0.1.11",
4
+ "description": "Types and functions for a state runtime inspired by Elm and functional programming",
5
+ "author": "Max Kaemmerer",
6
+ "license": "MIT",
4
7
  "main": "dist/index.js",
5
8
  "types": "dist/index.d.ts",
6
9
  "module": "dist/index.js",
@@ -22,8 +25,5 @@
22
25
  "devDependencies": {
23
26
  "typescript": "^5.8.2",
24
27
  "vitest": "^3.0.8"
25
- },
26
- "dependencies": {
27
- "lodash": "^4.17.21"
28
28
  }
29
29
  }