Skip to content

Commit

Permalink
Deps update
Browse files Browse the repository at this point in the history
  • Loading branch information
siefkenj committed Aug 22, 2024
1 parent 5562bfb commit 970e567
Show file tree
Hide file tree
Showing 9 changed files with 1,520 additions and 2,632 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,13 +82,13 @@ The `test:packages-install` runs `npm pack` on each `dist/` directory and then c
`README.md` files for all workspaces are generated automatically by running

```sh
npx esr scripts/build-docs.ts
npx vite-node scripts/build-docs.ts
```

`package.json` files can be checked for naming consistency by running

```sh
npx esr scripts/package-consistency.ts
npx vite-node scripts/package-consistency.ts
```

### Publishing
Expand Down
4,129 changes: 1,505 additions & 2,624 deletions package-lock.json
100755 → 100644

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions packages/unified-latex-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"@unified-latex/unified-latex-lint": "^1.7.1",
"@unified-latex/unified-latex-to-hast": "^1.7.1",
"@unified-latex/unified-latex-to-mdast": "^1.7.1",
"@unified-latex/unified-latex-to-pretext": "^1.7.1",
"@unified-latex/unified-latex-types": "^1.7.1",
"@unified-latex/unified-latex-util-arguments": "^1.7.1",
"@unified-latex/unified-latex-util-macros": "^1.7.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/unified-latex-cli/tests/doc-examples.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import "../../test-common";
import { exec as _exec } from "node:child_process";
import * as path from "node:path";
import spawn from "cross-spawn";
import glob from "glob";
import { glob } from "glob";

/* eslint-env jest */

Expand Down
2 changes: 1 addition & 1 deletion packages/unified-latex-ctan/vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { LibraryOptions, defineConfig } from "vite";
import dts from "vite-plugin-dts";
import glob from "glob";
import { glob } from "glob";
import path from "node:path";
import { isCjsPackage } from "../../scripts/esbuild-module-check.mjs";
import { packageReadmeAndPackageJson } from "../../scripts/vite-plugins";
Expand Down
2 changes: 1 addition & 1 deletion packages/unified-latex-lint/vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { LibraryOptions, defineConfig } from "vite";
import dts from "vite-plugin-dts";
import glob from "glob";
import { glob } from "glob";
import path from "node:path";
import { isCjsPackage } from "../../scripts/esbuild-module-check.mjs";
import { packageReadmeAndPackageJson } from "../../scripts/vite-plugins";
Expand Down
8 changes: 7 additions & 1 deletion packages/unified-latex-to-pretext/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,15 @@
"@unified-latex/unified-latex-util-replace": "^1.7.1",
"@unified-latex/unified-latex-util-trim": "^1.7.1",
"@unified-latex/unified-latex-util-visit": "^1.7.1",
"@unified-latex/unified-latex-util-macros": "^1.7.1",
"@unified-latex/unified-latex-util-split": "^1.7.1",
"vfile-message": "^4.0.2",
"vfile": "^6.0.2",
"cssesc": "^3.0.0",
"xast-util-to-xml": "^4.0.0",
"xastscript": "^4.0.0",
"unified": "^10.1.2"
"unified": "^10.1.2",
"unified-lint-rule": "^3.0.0"
},
"devDependencies": {
"@types/xast": "^2.0.4",
Expand Down
2 changes: 1 addition & 1 deletion scripts/add-wireit-to-packagejson.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Loop through all files in ./packages/* via a glob pattern and write to their package.json file
import glob from "glob";
import { glob } from "glob";
import * as fs from "node:fs/promises";
import path from "path";
import { promisify } from "util";
Expand Down
2 changes: 1 addition & 1 deletion test/make-packages.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import glob from "glob";
import { glob } from "glob";
import fs from "fs";
import shell from "shelljs";

Expand Down

0 comments on commit 970e567

Please sign in to comment.