Comparing version 2.0.0-beta.0 to 2.0.0-beta.1
@@ -1,9 +0,9 @@ | ||
export * from './Codec'; | ||
export * from './Either'; | ||
export * from './Function'; | ||
export * from './Codec.js'; | ||
export * from './Either.js'; | ||
export * from './Function.js'; | ||
export * from './List.js'; | ||
export * from './Maybe'; | ||
export { MaybeAsync, type MaybeAsyncTypeRef } from './MaybeAsync'; | ||
export { EitherAsync, type EitherAsyncTypeRef } from './EitherAsync'; | ||
export * from './NonEmptyList'; | ||
export * from './Tuple'; | ||
export * from './Maybe.js'; | ||
export { MaybeAsync, type MaybeAsyncTypeRef } from './MaybeAsync.js'; | ||
export { EitherAsync, type EitherAsyncTypeRef } from './EitherAsync.js'; | ||
export * from './NonEmptyList.js'; | ||
export * from './Tuple.js'; |
@@ -1,9 +0,9 @@ | ||
export * from './Codec'; | ||
export * from './Either'; | ||
export * from './Function'; | ||
export * from './Codec.js'; | ||
export * from './Either.js'; | ||
export * from './Function.js'; | ||
export * from './List.js'; | ||
export * from './Maybe'; | ||
export { MaybeAsync } from './MaybeAsync'; | ||
export { EitherAsync } from './EitherAsync'; | ||
export * from './NonEmptyList'; | ||
export * from './Tuple'; | ||
export * from './Maybe.js'; | ||
export { MaybeAsync } from './MaybeAsync.js'; | ||
export { EitherAsync } from './EitherAsync.js'; | ||
export * from './NonEmptyList.js'; | ||
export * from './Tuple.js'; |
@@ -1,9 +0,9 @@ | ||
export * from './Codec'; | ||
export * from './Either'; | ||
export * from './Function'; | ||
export * from './Codec.js'; | ||
export * from './Either.js'; | ||
export * from './Function.js'; | ||
export * from './List.js'; | ||
export * from './Maybe'; | ||
export { MaybeAsync, type MaybeAsyncTypeRef } from './MaybeAsync'; | ||
export { EitherAsync, type EitherAsyncTypeRef } from './EitherAsync'; | ||
export * from './NonEmptyList'; | ||
export * from './Tuple'; | ||
export * from './Maybe.js'; | ||
export { MaybeAsync, type MaybeAsyncTypeRef } from './MaybeAsync.js'; | ||
export { EitherAsync, type EitherAsyncTypeRef } from './EitherAsync.js'; | ||
export * from './NonEmptyList.js'; | ||
export * from './Tuple.js'; |
20
index.js
@@ -18,12 +18,12 @@ "use strict"; | ||
exports.EitherAsync = exports.MaybeAsync = void 0; | ||
__exportStar(require("./Codec"), exports); | ||
__exportStar(require("./Either"), exports); | ||
__exportStar(require("./Function"), exports); | ||
__exportStar(require("./Codec.js"), exports); | ||
__exportStar(require("./Either.js"), exports); | ||
__exportStar(require("./Function.js"), exports); | ||
__exportStar(require("./List.js"), exports); | ||
__exportStar(require("./Maybe"), exports); | ||
var MaybeAsync_1 = require("./MaybeAsync"); | ||
Object.defineProperty(exports, "MaybeAsync", { enumerable: true, get: function () { return MaybeAsync_1.MaybeAsync; } }); | ||
var EitherAsync_1 = require("./EitherAsync"); | ||
Object.defineProperty(exports, "EitherAsync", { enumerable: true, get: function () { return EitherAsync_1.EitherAsync; } }); | ||
__exportStar(require("./NonEmptyList"), exports); | ||
__exportStar(require("./Tuple"), exports); | ||
__exportStar(require("./Maybe.js"), exports); | ||
var MaybeAsync_js_1 = require("./MaybeAsync.js"); | ||
Object.defineProperty(exports, "MaybeAsync", { enumerable: true, get: function () { return MaybeAsync_js_1.MaybeAsync; } }); | ||
var EitherAsync_js_1 = require("./EitherAsync.js"); | ||
Object.defineProperty(exports, "EitherAsync", { enumerable: true, get: function () { return EitherAsync_js_1.EitherAsync; } }); | ||
__exportStar(require("./NonEmptyList.js"), exports); | ||
__exportStar(require("./Tuple.js"), exports); |
{ | ||
"name": "purify-ts", | ||
"version": "2.0.0-beta.0", | ||
"version": "2.0.0-beta.1", | ||
"description": "Functional programming standard library for TypeScript ", | ||
@@ -29,13 +29,10 @@ "repository": "https://github.com/gigobyte/purify.git", | ||
"main": "index.js", | ||
"module": "esm/index.js", | ||
"types": "index.d.ts", | ||
"exports": { | ||
".": { | ||
"module": { | ||
"import": { | ||
"types": "./esm/index.d.ts", | ||
"default": "./esm/index.js" | ||
}, | ||
"import": { | ||
"types": "./es/index.d.ts", | ||
"default": "./es/index.js" | ||
}, | ||
"require": { | ||
@@ -47,10 +44,6 @@ "types": "./index.d.ts", | ||
"./*": { | ||
"module": { | ||
"import": { | ||
"types": "./esm/*.d.ts", | ||
"default": "./esm/*.js" | ||
}, | ||
"import": { | ||
"types": "./es/*.d.ts", | ||
"default": "./es/*.js" | ||
}, | ||
"require": { | ||
@@ -57,0 +50,0 @@ "types": "./*.d.ts", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
202057