Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@jamashita/anden-object

Package Overview
Dependencies
Maintainers
1
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@jamashita/anden-object - npm Package Compare versions

Comparing version 2.1.0 to 2.2.0

dist/cjs/Entity.d.ts

17

package.json
{
"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> {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc