@jamashita/anden-object
Advanced tools
Comparing version 2.1.0 to 2.2.0
{ | ||
"name": "@jamashita/anden-object", | ||
"version": "2.1.0", | ||
"version": "2.2.0", | ||
"private": false, | ||
@@ -12,8 +12,5 @@ "repository": { | ||
"sideEffects": false, | ||
"type": "module", | ||
"exports": { | ||
".": "./dist/index.js" | ||
}, | ||
"main": "./dist/index.js", | ||
"types": "./dist/index.d.ts", | ||
"main": "./dist/cjs/index.js", | ||
"module": "./dist/esm/index.js", | ||
"types": "./dist/esm/index.d.ts", | ||
"files": [ | ||
@@ -24,3 +21,5 @@ "dist", | ||
"scripts": { | ||
"build": "yarn clean && tsc -b tsconfig.build.json", | ||
"build": "yarn clean && concurrently \"npm:build:*\"", | ||
"build:cjs": "tsc -b tsconfig.cjs.json", | ||
"build:esm": "tsc -b tsconfig.esm.json", | ||
"clean": "concurrently \"npm:clean:*\"", | ||
@@ -33,3 +32,3 @@ "clean:coverage": "rimraf coverage", | ||
"@jamashita/anden-error": "^2.0.0", | ||
"@jamashita/anden-type": "^2.0.0", | ||
"@jamashita/anden-type": "^2.1.0", | ||
"hash-it": "5.0.2" | ||
@@ -36,0 +35,0 @@ }, |
@@ -1,3 +0,3 @@ | ||
import { MockEntity } from '../Mock/MockEntity.js'; | ||
import { MockValueObject } from '../Mock/MockValueObject.js'; | ||
import { MockEntity } from '../Mock/MockEntity'; | ||
import { MockValueObject } from '../Mock/MockValueObject'; | ||
@@ -4,0 +4,0 @@ describe('Entity', () => { |
import { asyncRandom, sequence } from '@jamashita/anden-helper'; | ||
import { Inconnu } from '@jamashita/anden-type'; | ||
import { Objet } from '../Objet.js'; | ||
import { Objet } from '../Objet'; | ||
@@ -5,0 +5,0 @@ describe('Objet', () => { |
import { PlainObject, PlainObjectItem } from '@jamashita/anden-type'; | ||
import { Reference } from '../Reference.js'; | ||
import { Reference } from '../Reference'; | ||
@@ -4,0 +4,0 @@ describe('Reference', () => { |
import { asyncRandom, sequence } from '@jamashita/anden-helper'; | ||
import { MockValueObject } from '../Mock/MockValueObject.js'; | ||
import { MockValueObject } from '../Mock/MockValueObject'; | ||
@@ -4,0 +4,0 @@ describe('ValueObject', () => { |
import { Cloneable, Kind } from '@jamashita/anden-type'; | ||
import hash from 'hash-it'; | ||
import { Objet } from './Objet.js'; | ||
import { Objet } from './Objet'; | ||
@@ -5,0 +5,0 @@ export abstract class Entity<I, T extends Entity<I, T, N>, N extends string = string> extends Objet<N> implements Cloneable<T> { |
@@ -1,4 +0,4 @@ | ||
export * from './Mock/index.js'; | ||
export * from './Entity.js'; | ||
export * from './Objet.js'; | ||
export * from './ValueObject.js'; | ||
export * from './Mock/index'; | ||
export * from './Entity'; | ||
export * from './Objet'; | ||
export * from './ValueObject'; |
@@ -1,2 +0,2 @@ | ||
export * from './MockEntity.js'; | ||
export * from './MockValueObject.js'; | ||
export * from './MockEntity'; | ||
export * from './MockValueObject'; |
import { ObjectLiteral } from '@jamashita/anden-type'; | ||
import { Entity } from '../Entity.js'; | ||
import { Objet } from '../Objet.js'; | ||
import { Entity } from '../Entity'; | ||
import { Objet } from '../Objet'; | ||
@@ -5,0 +5,0 @@ export class MockEntity<V> extends Entity<V, MockEntity<V>, 'MockEntity'> { |
@@ -1,3 +0,3 @@ | ||
import { Objet } from '../Objet.js'; | ||
import { ValueObject } from '../ValueObject.js'; | ||
import { Objet } from '../Objet'; | ||
import { ValueObject } from '../ValueObject'; | ||
@@ -4,0 +4,0 @@ export class MockValueObject<V> extends ValueObject<'MockValueObject'> { |
import { Kind } from '@jamashita/anden-type'; | ||
import { Objet } from './Objet.js'; | ||
import { Objet } from './Objet'; | ||
@@ -4,0 +4,0 @@ export abstract class ValueObject<N extends string = string> extends Objet<N> { |
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
92984
89
870
No
Updated@jamashita/anden-type@^2.1.0