Skip to content

Commit

Permalink
[patch] update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
electrovir committed Sep 12, 2024
1 parent 8f1967a commit a1d930e
Show file tree
Hide file tree
Showing 10 changed files with 168 additions and 162 deletions.
300 changes: 152 additions & 148 deletions package-lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "augment-vir-temp-virmator-update",
"version": "30.0.2",
"name": "@augment-vir/mono-repo-root",
"version": "30.0.3",
"private": true,
"homepage": "https://github.com/electrovir/augment-vir",
"bugs": {
Expand Down
2 changes: 1 addition & 1 deletion packages/assert/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@augment-vir/assert",
"version": "30.0.2",
"version": "30.0.3",
"description": "A collection of assertions for test and production code alike.",
"keywords": [
"augment",
Expand Down
4 changes: 2 additions & 2 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.0.2",
"version": "30.0.3",
"description": "A collection of augments, helpers types, functions, and classes for any JavaScript environment.",
"keywords": [
"augment",
Expand Down Expand Up @@ -52,7 +52,7 @@
"@web/test-runner-commands": "^0.9.0",
"@web/test-runner-playwright": "^0.11.0",
"@web/test-runner-visual-regression": "^0.10.0",
"concurrently": "^9.0.0",
"concurrently": "^9.0.1",
"execute-in-browser": "^1.0.3",
"istanbul-smart-text-reporter": "^1.1.4"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@augment-vir/core",
"version": "30.0.2",
"version": "30.0.3",
"description": "Core augment-vir augments. Use @augment-vir/common instead.",
"homepage": "https://github.com/electrovir/augment-vir",
"bugs": {
Expand Down
4 changes: 2 additions & 2 deletions packages/node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@augment-vir/node",
"version": "30.0.2",
"version": "30.0.3",
"description": "A collection of augments, helpers types, functions, and classes only for Node.js (backend) JavaScript environments.",
"keywords": [
"augment",
Expand Down Expand Up @@ -55,7 +55,7 @@
"@web/test-runner-playwright": "^0.11.0",
"@web/test-runner-visual-regression": "^0.10.0",
"c8": "^10.1.2",
"concurrently": "^9.0.0",
"concurrently": "^9.0.1",
"istanbul-smart-text-reporter": "^1.1.4",
"prisma": "^5.19.1"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/scripts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@augment-vir/scripts",
"version": "30.0.2",
"version": "30.0.3",
"private": true,
"homepage": "https://github.com/electrovir/augment-vir",
"bugs": {
Expand All @@ -26,7 +26,7 @@
"dependencies": {
"@augment-vir/assert": "^30.0.2",
"@augment-vir/core": "^30.0.2",
"@virmator/docs": "^13.3.11",
"@virmator/docs": "^13.3.12",
"jsdom": "^25.0.0",
"typedoc": "^0.26.7"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/test/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@augment-vir/test",
"version": "30.0.2",
"version": "30.0.3",
"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 @@ -53,7 +53,7 @@
"@web/test-runner": "^0.19.0",
"@web/test-runner-commands": "^0.9.0",
"@web/test-runner-playwright": "^0.11.0",
"concurrently": "^9.0.0",
"concurrently": "^9.0.1",
"element-vir": "^22.2.2",
"istanbul-smart-text-reporter": "^1.1.4",
"typescript": "^5.6.2"
Expand Down
2 changes: 1 addition & 1 deletion packages/web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@augment-vir/web",
"version": "30.0.2",
"version": "30.0.3",
"description": "A collection of augments, helpers types, functions, and classes only for web (frontend) JavaScript environments.",
"keywords": [
"augment",
Expand Down
4 changes: 3 additions & 1 deletion packages/web/src/augments/video.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ describe(loadVideo.name, () => {
* in those _Windows_ tests, `bowser.getOSName` still reports `'macOS'`, so we have to omit
* Safari entirely.
*/
if (bowser.getBrowserName() !== 'Safari') {
if (bowser.getBrowserName() === 'Safari') {
return;
} else {
assert.instanceOf(await loadVideo('/video.mock.webm'), HTMLVideoElement);
}
});
Expand Down

0 comments on commit a1d930e

Please sign in to comment.