Skip to content

Commit

Permalink
[patch] update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
electrovir committed Jan 14, 2025
1 parent ee6ea51 commit a232ce9
Show file tree
Hide file tree
Showing 10 changed files with 360 additions and 342 deletions.
628 changes: 322 additions & 306 deletions package-lock.json

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@augment-vir/mono-repo-root",
"version": "31.7.1",
"version": "31.7.2",
"private": true,
"homepage": "https://github.com/electrovir/augment-vir",
"bugs": {
Expand Down Expand Up @@ -40,14 +40,14 @@
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "9.14.0",
"@stylistic/eslint-plugin": "^2.12.1",
"@stylistic/eslint-plugin-ts": "^2.12.1",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"cspell": "^8.17.1",
"@stylistic/eslint-plugin": "^2.13.0",
"@stylistic/eslint-plugin-ts": "^2.13.0",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"cspell": "^8.17.2",
"dependency-cruiser": "^16.9.0",
"esbuild": "^0.24.2",
"eslint": "9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-jsdoc": "^50.6.1",
"eslint-plugin-monorepo-cop": "^1.0.2",
"eslint-plugin-playwright": "^2.1.0",
Expand All @@ -65,7 +65,7 @@
"prettier-plugin-packagejson": "^2.5.6",
"prettier-plugin-sort-json": "^4.1.1",
"prettier-plugin-toml": "^2.0.1",
"typescript-eslint": "^8.19.1",
"typescript-eslint": "^8.20.0",
"virmator": "^13.11.2"
},
"engines": {
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": "31.7.1",
"version": "31.7.2",
"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": "^31.7.1",
"@augment-vir/core": "^31.7.2",
"@date-vir/duration": "^7.1.2",
"deep-eql": "^5.0.2",
"expect-type": "^1.1.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@augment-vir/common",
"version": "31.7.1",
"version": "31.7.2",
"description": "A collection of augments, helpers types, functions, and classes for any JavaScript environment.",
"keywords": [
"augment",
Expand Down Expand Up @@ -39,8 +39,8 @@
"test:web": "virmator --no-deps test web"
},
"dependencies": {
"@augment-vir/assert": "^31.7.1",
"@augment-vir/core": "^31.7.1",
"@augment-vir/assert": "^31.7.2",
"@augment-vir/core": "^31.7.2",
"@date-vir/duration": "^7.1.2",
"ansi-styles": "^6.2.1",
"json5": "^2.2.3",
Expand Down
8 changes: 5 additions & 3 deletions packages/common/src/augments/function/call-asynchronously.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,10 @@ import {DeferredPromise, type MaybePromise} from '@augment-vir/core';
*/
export async function callAsynchronously<T>(callback: () => MaybePromise<T>) {
const deferredPromise = new DeferredPromise<T>();

setTimeout(async () => {deferredPromise.resolve(await callback())})


setTimeout(async () => {
deferredPromise.resolve(await callback());
});

return deferredPromise.promise;
}
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@augment-vir/core",
"version": "31.7.1",
"version": "31.7.2",
"description": "Core augment-vir augments. Use @augment-vir/common instead.",
"homepage": "https://github.com/electrovir/augment-vir",
"bugs": {
Expand Down Expand Up @@ -33,7 +33,7 @@
"type-fest": "^4.32.0"
},
"devDependencies": {
"@types/node": "^22.10.5",
"@types/node": "^22.10.6",
"c8": "^10.1.3",
"istanbul-smart-text-reporter": "^1.1.5",
"typescript": "^5.7.2"
Expand Down
10 changes: 5 additions & 5 deletions packages/node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@augment-vir/node",
"version": "31.7.1",
"version": "31.7.2",
"description": "A collection of augments, helpers types, functions, and classes only for Node.js (backend) JavaScript environments.",
"keywords": [
"augment",
Expand Down Expand Up @@ -37,18 +37,18 @@
"test:update": "npm test"
},
"dependencies": {
"@augment-vir/assert": "^31.7.1",
"@augment-vir/common": "^31.7.1",
"@augment-vir/assert": "^31.7.2",
"@augment-vir/common": "^31.7.2",
"@date-vir/duration": "^7.1.2",
"ansi-styles": "^6.2.1",
"terminate": "^2.8.0",
"type-fest": "^4.32.0",
"typed-event-target": "^4.0.2"
},
"devDependencies": {
"@augment-vir/test": "^31.7.1",
"@augment-vir/test": "^31.7.2",
"@prisma/client": "^6.2.1",
"@types/node": "^22.10.5",
"@types/node": "^22.10.6",
"@web/dev-server-esbuild": "^1.0.3",
"@web/test-runner": "^0.19.0",
"@web/test-runner-commands": "^0.9.0",
Expand Down
12 changes: 6 additions & 6 deletions packages/scripts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@augment-vir/scripts",
"version": "31.7.1",
"version": "31.7.2",
"private": true,
"homepage": "https://github.com/electrovir/augment-vir",
"bugs": {
Expand All @@ -24,17 +24,17 @@
"test:update": "npm test"
},
"dependencies": {
"@augment-vir/assert": "^31.7.1",
"@augment-vir/common": "^31.7.1",
"@augment-vir/node": "^31.7.1",
"@augment-vir/assert": "^31.7.2",
"@augment-vir/common": "^31.7.2",
"@augment-vir/node": "^31.7.2",
"@virmator/docs": "^13.11.2",
"jsdom": "^26.0.0",
"typedoc": "^0.27.6"
},
"devDependencies": {
"@augment-vir/test": "^31.7.1",
"@augment-vir/test": "^31.7.2",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.10.5",
"@types/node": "^22.10.6",
"typescript": "^5.7.2"
},
"engines": {
Expand Down
8 changes: 4 additions & 4 deletions packages/test/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@augment-vir/test",
"version": "31.7.1",
"version": "31.7.2",
"description": "A universal testing suite that works with Mocha style test runners _and_ Node.js's built-in test runner.",
"keywords": [
"test",
Expand Down Expand Up @@ -42,14 +42,14 @@
"test:web": "virmator test --no-deps web 'src/test-web/**/*.test.ts' 'src/augments/universal-testing-suite/**/*.test.ts'"
},
"dependencies": {
"@augment-vir/assert": "^31.7.1",
"@augment-vir/common": "^31.7.1",
"@augment-vir/assert": "^31.7.2",
"@augment-vir/common": "^31.7.2",
"@open-wc/testing-helpers": "^3.0.1",
"@virmator/test": "^13.11.2",
"type-fest": "^4.32.0"
},
"devDependencies": {
"@types/node": "^22.10.5",
"@types/node": "^22.10.6",
"@web/dev-server-esbuild": "^1.0.3",
"@web/test-runner": "^0.19.0",
"@web/test-runner-commands": "^0.9.0",
Expand Down
8 changes: 4 additions & 4 deletions packages/web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@augment-vir/web",
"version": "31.7.1",
"version": "31.7.2",
"description": "A collection of augments, helpers types, functions, and classes only for web (frontend) JavaScript environments.",
"keywords": [
"augment",
Expand Down Expand Up @@ -35,14 +35,14 @@
"test:update": "npm test"
},
"dependencies": {
"@augment-vir/assert": "^31.7.1",
"@augment-vir/common": "^31.7.1",
"@augment-vir/assert": "^31.7.2",
"@augment-vir/common": "^31.7.2",
"@date-vir/duration": "^7.1.2",
"html-spec-tags": "^2.2.2",
"type-fest": "^4.32.0"
},
"devDependencies": {
"@augment-vir/test": "^31.7.1",
"@augment-vir/test": "^31.7.2",
"bowser": "^2.11.0",
"typescript": "^5.7.2"
},
Expand Down

0 comments on commit a232ce9

Please sign in to comment.