Skip to content

Commit

Permalink
Merge pull request #69 from theseanl/expose-more-parser-plugins
Browse files Browse the repository at this point in the history
Expose more parse plugins from unified-latex-util-parser package
  • Loading branch information
siefkenj authored Jan 28, 2024
2 parents 4811a0b + e831571 commit d567af3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 3 additions & 1 deletion packages/structured-clone/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@
"compile:tsc": "tsc",
"compile:esm_and_cjs": "node build.js",
"compile": "run-p compile:tsc compile:esm_and_cjs",
"test": "vitest"
"test": "vitest",
"package": "node ../../scripts/make-package.mjs",
"publish": "cd dist && npm publish"
},
"repository": {
"type": "git",
Expand Down
3 changes: 3 additions & 0 deletions packages/unified-latex-util-parse/index.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
export * from "./libs/compiler-ast";
export * from "./libs/plugin-from-string";
export * from "./libs/plugin-from-string-minimal";
export * from "./libs/process-at-letter-and-expl-macros";
export * from "./libs/process-macros-and-environments";
export * from "./libs/parse-minimal";
export * from "./libs/parse";
export * from "./libs/parse-math";
export * from "./libs/reparse-math";

// NOTE: The docstring comment must be the last item in the index.ts file!
/**
Expand Down
2 changes: 1 addition & 1 deletion packages/unified-latex-util-to-string/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"main": "dist/index.js",
"type": "module",
"dependencies": {
"@unified-latex/unified-latex-prettier": "^1.4.1",
"@unified-latex/unified-latex-prettier": "^1.6.0",
"@unified-latex/unified-latex-types": "^1.6.0",
"@unified-latex/unified-latex-util-print-raw": "^1.6.0",
"prettier": "^2.8.8",
Expand Down

0 comments on commit d567af3

Please sign in to comment.