Skip to content

Commit

Permalink
[minor] add PromiseQueue to @augment-vir/common
Browse files Browse the repository at this point in the history
  • Loading branch information
electrovir committed Nov 7, 2024
1 parent e2c1860 commit 8751982
Show file tree
Hide file tree
Showing 19 changed files with 559 additions and 68 deletions.
69 changes: 35 additions & 34 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@augment-vir/mono-repo-root",
"version": "30.3.0",
"version": "30.4.0",
"private": true,
"homepage": "https://github.com/electrovir/augment-vir",
"bugs": {
Expand Down
4 changes: 2 additions & 2 deletions packages/assert/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@augment-vir/assert",
"version": "30.3.0",
"version": "30.4.0",
"description": "A collection of assertions for test and production code alike.",
"keywords": [
"augment",
Expand Down Expand Up @@ -41,7 +41,7 @@
"test:update": "npm test"
},
"dependencies": {
"@augment-vir/core": "^30.3.0",
"@augment-vir/core": "^30.4.0",
"@date-vir/duration": "^6.0.1",
"deep-eql": "^5.0.2",
"expect-type": "^1.1.0",
Expand Down
9 changes: 5 additions & 4 deletions packages/common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@augment-vir/common",
"version": "30.3.0",
"version": "30.4.0",
"description": "A collection of augments, helpers types, functions, and classes for any JavaScript environment.",
"keywords": [
"augment",
Expand Down Expand Up @@ -39,12 +39,13 @@
"test:web": "virmator --no-deps test web"
},
"dependencies": {
"@augment-vir/assert": "^30.3.0",
"@augment-vir/core": "^30.3.0",
"@augment-vir/assert": "^30.4.0",
"@augment-vir/core": "^30.4.0",
"@date-vir/duration": "^6.0.1",
"ansi-styles": "^6.2.1",
"json5": "^2.2.3",
"type-fest": "^4.26.1"
"type-fest": "^4.26.1",
"typed-event-target": "^4.0.2"
},
"devDependencies": {
"@web/dev-server-esbuild": "^1.0.3",
Expand Down
1 change: 1 addition & 0 deletions packages/common/src/augments/object/map-values.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,7 @@ describe(mapObjectValues.name, () => {
onlyAcceptStrings(originalObject.a);

const mappedObject = mapObjectValues(originalObject, (key, value) => {
// eslint-disable-next-line @typescript-eslint/no-base-to-string
return String(value);
});

Expand Down
Loading

0 comments on commit 8751982

Please sign in to comment.