Skip to content

Commit

Permalink
Merge branch 'main' into feat-contact-exchange
Browse files Browse the repository at this point in the history
  • Loading branch information
Ogenbertrand authored Oct 7, 2024
2 parents 0277f33 + 50486dc commit 8be2cde
Show file tree
Hide file tree
Showing 4 changed files with 102 additions and 24 deletions.
63 changes: 54 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 10 additions & 4 deletions packages/cloning-decorator/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "cloning-decorator",
"name": "@adorsys-gis/cloning-decorator",
"version": "1.0.0",
"type": "commonjs",
"main": "./src/index.js",
Expand All @@ -24,8 +24,14 @@
"test": "jest",
"depcheck": "depcheck || true"
},
"keywords": [],
"author": "",
"keywords": [
"typescript",
"decorator",
"deep-clone",
"immutability",
"state-management"
],
"author": "Adorsys",
"license": "ISC",
"description": ""
"description": "A TypeScript decorator library for deep cloning method arguments to prevent side effects, enhancing immutability in class methods."
}
24 changes: 19 additions & 5 deletions packages/event-bus/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "event-bus",
"version": "0.0.1",
"name": "@adorsys-gis/event-bus",
"version": "1.0.2",
"dependencies": {
"@swc/helpers": "~0.5.2",
"eventemitter3": "5.0.1"
},
"type": "commonjs",
"main": "./src/index.js",
"main": "./src/index.ts",
"typings": "./src/index.d.ts",
"devDependencies": {
"@swc/core": "^1.7.28",
Expand All @@ -19,6 +19,20 @@
},
"scripts": {
"test": "jest",
"build": "tsc -p tsconfig.lib.json"
}
"build": "tsc -p tsconfig.lib.json",
"lint": "eslint ./src --ext .ts"
},
"keywords": [
"event-bus",
"event-emitter",
"asynchronous",
"deep-cloning",
"event-driven",
"javascript",
"event-management",
"custom-events"
],
"author": "Adorsys",
"license": "ISC",
"description": "An event-driven library for managing custom events in JavaScript applications. Built on eventemitter3, it supports both synchronous and asynchronous event handling and ensures deep cloning of emitted data to prevent unintended mutations."
}
25 changes: 19 additions & 6 deletions packages/storage/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{
"name": "storage",
"name": "@adorsys-gis/storage",
"version": "1.0.0",
"scripts": {
"test": "jest",
"build": "tsc -p tsconfig.lib.json"
"build": "tsc -p tsconfig.lib.json",
"lint": "eslint ./src --ext .ts"
},
"private": true,
"private": false,
"dependencies": {
"idb": "^8.0.0"
},
Expand All @@ -30,8 +31,20 @@
"type": "commonjs",
"main": "./src/index.js",
"typings": "./src/index.d.ts",
"keywords": [],
"author": "",
"keywords": [
"storage",
"data-storage",
"IndexedDB",
"LocalStorage",
"SessionStorage",
"browser-storage",
"web-apps",
"asynchronous-storage",
"data-retrieval",
"JavaScript",
"TypeScript"
],
"author": "Adorsys",
"license": "ISC",
"description": ""
"description": "A service module for data storage and retrieval in Progressive Web Apps (PWAs) using IndexedDB, LocalStorage, and SessionStorage. This library provides an interface for efficient asynchronous storage of structured data, designed to meet the needs of modern web applications."
}

0 comments on commit 8be2cde

Please sign in to comment.