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 10, 2024
1 parent 89e451a commit 59aceda
Show file tree
Hide file tree
Showing 31 changed files with 9,500 additions and 4,685 deletions.
13,868 changes: 9,338 additions & 4,530 deletions package-lock.json

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@virmator/mono-repo-root",
"version": "13.3.8",
"version": "13.3.9",
"private": true,
"type": "module",
"workspaces": [
Expand All @@ -24,34 +24,34 @@
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.0",
"@stylistic/eslint-plugin": "^2.6.4",
"@stylistic/eslint-plugin-ts": "^2.6.4",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@eslint/js": "^9.10.0",
"@stylistic/eslint-plugin": "^2.8.0",
"@stylistic/eslint-plugin-ts": "^2.8.0",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"cspell": "^8.14.2",
"dependency-cruiser": "^16.4.0",
"dependency-cruiser": "^16.4.1",
"esbuild": "^0.23.1",
"eslint": "^9.9.0",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^50.2.2",
"eslint-plugin-monorepo-cop": "^1.0.2",
"eslint-plugin-playwright": "^1.6.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-require-extensions": "^0.1.3",
"eslint-plugin-sonarjs": "^1.0.4",
"eslint-plugin-sonarjs": "^2.0.2",
"eslint-plugin-unicorn": "^55.0.0",
"markdown-code-example-inserter": "^2.0.3",
"mono-vir": "^1.0.1",
"npm-check-updates": "^17.1.0",
"npm-check-updates": "^17.1.1",
"prettier": "^3.3.3",
"prettier-plugin-interpolated-html-tags": "^1.0.5",
"prettier-plugin-jsdoc": "^1.3.0",
"prettier-plugin-multiline-arrays": "^3.0.6",
"prettier-plugin-organize-imports": "^4.0.0",
"prettier-plugin-packagejson": "^2.5.1",
"prettier-plugin-packagejson": "^2.5.2",
"prettier-plugin-sort-json": "^4.0.0",
"prettier-plugin-toml": "^2.0.1",
"typescript-eslint": "^8.2.0",
"typescript-eslint": "^8.5.0",
"virmator": "./"
},
"engines": {
Expand Down
14 changes: 7 additions & 7 deletions packages/compile/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@virmator/compile",
"version": "13.3.8",
"version": "13.3.9",
"description": "Default TS compile plugin for virmator.",
"keywords": [
"virmator",
Expand Down Expand Up @@ -33,19 +33,19 @@
"dependencies": {
"@augment-vir/common": "^29.3.0",
"@augment-vir/node-js": "^29.3.0",
"@virmator/core": "^13.3.8",
"@virmator/core": "^13.3.9",
"run-time-assertions": "^1.5.2"
},
"devDependencies": {
"@types/node": "^22.5.0",
"@virmator/plugin-testing": "^13.3.8",
"@types/node": "^22.5.4",
"@virmator/plugin-testing": "^13.3.9",
"c8": "^10.1.2",
"chalk": "^5.3.0",
"concurrently": "^8.2.2",
"concurrently": "^9.0.0",
"istanbul-smart-text-reporter": "^1.1.4",
"mono-vir": "^1.0.1",
"tsx": "^4.17.0",
"typescript": "^5.5.4"
"tsx": "^4.19.0",
"typescript": "^5.6.2"
},
"peerDependencies": {
"typescript": "*"
Expand Down
8 changes: 4 additions & 4 deletions packages/compile/src/compile.test.ts.snapshot
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
exports[`TS Compile > compiles a valid project 1`] = `
{
"logs": {
"stdout": "Copied tsconfig.json\\nInstalling typescript@5.5.4...\\nDeleting dist...\\nDeleting tsconfig.tsbuildinfo...\\nCompiling...\\n> npx tsc --pretty\\ncompile finished."
"stdout": "Copied tsconfig.json\\nInstalling typescript@5.6.2...\\nDeleting dist...\\nDeleting tsconfig.tsbuildinfo...\\nCompiling...\\n> npx tsc --pretty\\ncompile finished."
},
"cwd": "packages/compile/test-files/pass-compile",
"contentsDiff": {
"package.json": "{\\n \\"devDependencies\\": {\\n \\"typescript\\": \\"^5.5.4\\"\\n }\\n}\\n",
"package.json": "{\\n \\"devDependencies\\": {\\n \\"typescript\\": \\"^5.6.2\\"\\n }\\n}\\n",
"dist": {
"a.d.ts": "export type A = {\\n here: string;\\n there: number;\\n};\\nexport declare const value: A;\\n",
"a.js": "export const value = {\\n here: 'yo',\\n there: 0,\\n};\\n"
Expand All @@ -18,12 +18,12 @@ exports[`TS Compile > compiles a valid project 1`] = `
exports[`TS Compile > rejects an invalid project 1`] = `
{
"logs": {
"stdout": "Copied tsconfig.json\\nInstalling typescript@5.5.4...\\nDeleting dist...\\nDeleting tsconfig.tsbuildinfo...\\nCompiling...\\n> npx tsc --pretty\\nsrc/a.ts:12:5 - error TS2353: Object literal may only specify known properties, and 'no' does not exist in type 'A'.\\n\\n12 no: 'bad',\\n ~~\\n\\n\\nFound 1 error in src/a.ts:12\\n",
"stdout": "Copied tsconfig.json\\nInstalling typescript@5.6.2...\\nDeleting dist...\\nDeleting tsconfig.tsbuildinfo...\\nCompiling...\\n> npx tsc --pretty\\nsrc/a.ts:12:5 - error TS2353: Object literal may only specify known properties, and 'no' does not exist in type 'A'.\\n\\n12 no: 'bad',\\n ~~\\n\\n\\nFound 1 error in src/a.ts:12\\n",
"stderr": "compile failed."
},
"cwd": "packages/compile/test-files/fail-compile",
"contentsDiff": {
"package.json": "{\\n \\"devDependencies\\": {\\n \\"typescript\\": \\"^5.5.4\\"\\n }\\n}\\n",
"package.json": "{\\n \\"devDependencies\\": {\\n \\"typescript\\": \\"^5.6.2\\"\\n }\\n}\\n",
"dist": {
"a.d.ts": "export type A = {\\n here: string;\\n there: number;\\n};\\nexport declare const value: A;\\nexport declare const value2: A;\\n",
"a.js": "export const value = {\\n here: 'yo',\\n there: 0,\\n};\\nexport const value2 = {\\n no: 'bad',\\n};\\n"
Expand Down
10 changes: 5 additions & 5 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@virmator/core",
"version": "13.3.8",
"version": "13.3.9",
"description": "Shared core functionality for all virmator plugins and the virmator CLI.",
"keywords": [
"automation",
Expand Down Expand Up @@ -35,16 +35,16 @@
"@augment-vir/node-js": "^29.3.0",
"chalk": "^5.3.0",
"cli-args-vir": "^0.0.3",
"concurrently": "^8.2.2",
"concurrently": "^9.0.0",
"mono-vir": "^1.0.1",
"run-time-assertions": "^1.5.2",
"semver": "^7.6.3",
"type-fest": "^4.25.0",
"typescript": "^5.5.4"
"type-fest": "^4.26.1",
"typescript": "^5.6.2"
},
"devDependencies": {
"@augment-vir/testing": "^29.3.0",
"@types/node": "^22.5.0",
"@types/node": "^22.5.4",
"@types/semver": "^7.5.8",
"esbuild": "^0.23.1"
},
Expand Down
5 changes: 4 additions & 1 deletion packages/core/src/augments/stream/callback-writable.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
import {Writable} from 'node:stream';
import {PluginLogger} from '../../plugin/plugin-logger.js';

/** A {@link Writable} implementation that writes to the provided plugin logger. */
/**
* A [Writable](https://nodejs.org/api/stream.html#class-streamwritable) implementation that writes
* to the provided plugin logger.
*/
export class CallbackWritable extends Writable {
private chunks: string[] = [];

Expand Down
10 changes: 5 additions & 5 deletions packages/deps/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@virmator/deps",
"version": "13.3.8",
"version": "13.3.9",
"description": "Default TS deps plugin for virmator.",
"keywords": [
"virmator",
Expand Down Expand Up @@ -35,16 +35,16 @@
"dependencies": {
"@augment-vir/common": "^29.3.0",
"@augment-vir/node-js": "^29.3.0",
"@virmator/core": "^13.3.8",
"@virmator/core": "^13.3.9",
"mri": "^1.2.0"
},
"devDependencies": {
"@types/node": "^22.5.0",
"@types/node": "^22.5.4",
"c8": "^10.1.2",
"dependency-cruiser": "^16.4.0",
"dependency-cruiser": "^16.4.1",
"esbuild": "^0.23.1",
"istanbul-smart-text-reporter": "^1.1.4",
"npm-check-updates": "^17.1.0"
"npm-check-updates": "^17.1.1"
},
"engines": {
"node": ">=22"
Expand Down
4 changes: 2 additions & 2 deletions packages/deps/src/deps.test.ts.snapshot
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ exports[`Deps > fails invalid deps 1`] = `
exports[`Deps > fails invalid mono repo deps 1`] = `
{
"logs": {
"stdout": "Copied dep-cruiser.config.cts\\n[packages/a] > npx depcruise --config ../../node_modules/.virmator/dep-cruiser.config.cjs src\\n[packages/b] > npx depcruise --config ../../node_modules/.virmator/dep-cruiser.config.cjs src\\n[packages/a] \\n[packages/a] error no-circular: src/a.ts → \\n[packages/a] src/aa.ts →\\n[packages/a] src/a.ts\\n[packages/a] \\n[packages/a] x 1 dependency violations (1 errors, 0 warnings). 2 modules, 2 dependencies cruised.\\n[packages/a] \\n[packages/a] npx depcruise --config ../../node_modules/.virmator/dep-cruiser.config.cjs src exited with code 1\\n[packages/b] \\n[packages/b] error no-orphans: src/b.ts\\n[packages/b] \\n[packages/b] x 1 dependency violations (1 errors, 0 warnings). 1 modules, 0 dependencies cruised.\\n[packages/b] \\n[packages/b] npx depcruise --config ../../node_modules/.virmator/dep-cruiser.config.cjs src exited with code 1",
"stderr": "packages/a, packages/b failed.\\ndeps failed."
"stdout": "Copied dep-cruiser.config.cts\\n[packages/a] > npx depcruise --config ../../node_modules/.virmator/dep-cruiser.config.cjs src\\n[packages/b] > npx depcruise --config ../../node_modules/.virmator/dep-cruiser.config.cjs src\\n[packages/a] \\n[packages/a] error no-circular: src/a.ts → \\n[packages/a] src/aa.ts →\\n[packages/a] src/a.ts\\n[packages/a] \\n[packages/a] x 1 dependency violations (1 errors, 0 warnings). 2 modules, 2 dependencies cruised.\\n[packages/a] \\n[packages/a] npx depcruise --config ../../node_modules/.virmator/dep-cruiser.config.cjs src exited with code 1",
"stderr": "packages/a failed.\\ndeps failed."
},
"cwd": "packages/deps/test-files/invalid-mono-repo",
"contentsDiff": {
Expand Down
8 changes: 4 additions & 4 deletions packages/docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@virmator/docs",
"version": "13.3.8",
"version": "13.3.9",
"description": "Default TS docs plugin for virmator.",
"keywords": [
"virmator",
Expand Down Expand Up @@ -34,18 +34,18 @@
"dependencies": {
"@augment-vir/common": "^29.3.0",
"@augment-vir/node-js": "^29.3.0",
"@virmator/core": "^13.3.8",
"@virmator/core": "^13.3.9",
"chalk": "^5.3.0",
"mri": "^1.2.0",
"run-time-assertions": "^1.5.2"
},
"devDependencies": {
"@types/node": "^22.5.0",
"@types/node": "^22.5.4",
"c8": "^10.1.2",
"esbuild": "^0.23.1",
"istanbul-smart-text-reporter": "^1.1.4",
"markdown-code-example-inserter": "^2.0.3",
"typedoc": "^0.26.6"
"typedoc": "^0.26.7"
},
"engines": {
"node": ">=22"
Expand Down
Loading

0 comments on commit 59aceda

Please sign in to comment.