-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
36 changed files
with
2,099 additions
and
2,099 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"packages": ["packages/*"], | ||
"version": "1.5.0" | ||
"packages": ["packages/*"], | ||
"version": "1.6.0" | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,48 @@ | ||
{ | ||
"name": "@unified-latex/structured-clone", | ||
"version": "1.4.2", | ||
"description": "A cheap (and not correct) structured-clone polyfill with types", | ||
"main": "dist/index.js", | ||
"type": "module", | ||
"files": [ | ||
"dist/**/*.ts", | ||
"dist/**/*.js", | ||
"dist/**/*.map", | ||
"dist/**/*.json" | ||
], | ||
"exports": { | ||
".": { | ||
"import": "./dist/index.js", | ||
"require": "./dist/index.cjs" | ||
"name": "@unified-latex/structured-clone", | ||
"version": "1.6.0", | ||
"description": "A cheap (and not correct) structured-clone polyfill with types", | ||
"main": "dist/index.js", | ||
"type": "module", | ||
"files": [ | ||
"dist/**/*.ts", | ||
"dist/**/*.js", | ||
"dist/**/*.map", | ||
"dist/**/*.json" | ||
], | ||
"exports": { | ||
".": { | ||
"import": "./dist/index.js", | ||
"require": "./dist/index.cjs" | ||
}, | ||
"./*js": "./dist/*js", | ||
"./*": { | ||
"import": "./dist/*.js", | ||
"require": "./dist/*.cjs" | ||
} | ||
}, | ||
"./*js": "./dist/*js", | ||
"./*": { | ||
"import": "./dist/*.js", | ||
"require": "./dist/*.cjs" | ||
} | ||
}, | ||
"scripts": { | ||
"build": "npm run clean && mkdirp ./dist && npm run compile", | ||
"clean": "rm -rf ./dist && rm -rf tsconfig.tsbuildinfo", | ||
"compile": "tsc -b tsconfig.json & node build.js & for job in `jobs -p`; do wait ${job}; done", | ||
"test": "vitest" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/siefkenj/unified-latex.git" | ||
}, | ||
"keywords": [ | ||
"pegjs", | ||
"latex", | ||
"parser", | ||
"prettier", | ||
"unified-latex", | ||
"unified" | ||
], | ||
"author": "Jason Siefken", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/siefkenj/unified-latex/issues" | ||
}, | ||
"homepage": "https://github.com/siefkenj/unified-latex#readme" | ||
"scripts": { | ||
"build": "npm run clean && mkdirp ./dist && npm run compile", | ||
"clean": "rm -rf ./dist && rm -rf tsconfig.tsbuildinfo", | ||
"compile": "tsc -b tsconfig.json & node build.js & for job in `jobs -p`; do wait ${job}; done", | ||
"test": "vitest" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/siefkenj/unified-latex.git" | ||
}, | ||
"keywords": [ | ||
"pegjs", | ||
"latex", | ||
"parser", | ||
"prettier", | ||
"unified-latex", | ||
"unified" | ||
], | ||
"author": "Jason Siefken", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/siefkenj/unified-latex/issues" | ||
}, | ||
"homepage": "https://github.com/siefkenj/unified-latex#readme" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,50 @@ | ||
{ | ||
"name": "@unified-latex/support-tables", | ||
"version": "1.4.2", | ||
"description": "Lists of special data needed for the internals of unified-latex", | ||
"type": "module", | ||
"files": [ | ||
"dist/**/*.ts", | ||
"dist/**/*.js", | ||
"dist/**/*.map", | ||
"dist/**/*.json" | ||
], | ||
"exports": { | ||
".": { | ||
"import": "./dist/index.js", | ||
"require": "./dist/index.cjs" | ||
"name": "@unified-latex/support-tables", | ||
"version": "1.6.0", | ||
"description": "Lists of special data needed for the internals of unified-latex", | ||
"type": "module", | ||
"files": [ | ||
"dist/**/*.ts", | ||
"dist/**/*.js", | ||
"dist/**/*.map", | ||
"dist/**/*.json" | ||
], | ||
"exports": { | ||
".": { | ||
"import": "./dist/index.js", | ||
"require": "./dist/index.cjs" | ||
}, | ||
"./*json": "./dist/*json", | ||
"./*js": "./dist/*js", | ||
"./*": { | ||
"import": "./dist/*.js", | ||
"require": "./dist/*.cjs" | ||
} | ||
}, | ||
"./*json": "./dist/*json", | ||
"./*js": "./dist/*js", | ||
"./*": { | ||
"import": "./dist/*.js", | ||
"require": "./dist/*.cjs" | ||
} | ||
}, | ||
"scripts": { | ||
"build": "npm run clean && mkdirp ./dist && npm run compile", | ||
"clean": "rm -rf ./dist && rm -rf tsconfig.tsbuildinfo", | ||
"compile": "tsc -b tsconfig.json & node build.js & for job in `jobs -p`; do wait ${job}; done", | ||
"package": "node ../../scripts/make-package.mjs", | ||
"publish": "cd dist && npm publish" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/siefkenj/unified-latex.git" | ||
}, | ||
"keywords": [ | ||
"pegjs", | ||
"latex", | ||
"parser", | ||
"prettier", | ||
"unified-latex", | ||
"unified" | ||
], | ||
"author": "Jason Siefken", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/siefkenj/unified-latex/issues" | ||
}, | ||
"homepage": "https://github.com/siefkenj/unified-latex#readme", | ||
"private": true | ||
"scripts": { | ||
"build": "npm run clean && mkdirp ./dist && npm run compile", | ||
"clean": "rm -rf ./dist && rm -rf tsconfig.tsbuildinfo", | ||
"compile": "tsc -b tsconfig.json & node build.js & for job in `jobs -p`; do wait ${job}; done", | ||
"package": "node ../../scripts/make-package.mjs", | ||
"publish": "cd dist && npm publish" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/siefkenj/unified-latex.git" | ||
}, | ||
"keywords": [ | ||
"pegjs", | ||
"latex", | ||
"parser", | ||
"prettier", | ||
"unified-latex", | ||
"unified" | ||
], | ||
"author": "Jason Siefken", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/siefkenj/unified-latex/issues" | ||
}, | ||
"homepage": "https://github.com/siefkenj/unified-latex#readme", | ||
"private": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,53 @@ | ||
{ | ||
"name": "@unified-latex/unified-latex-builder", | ||
"version": "1.4.2", | ||
"description": "Tools for constructing unified-latex ASTs", | ||
"main": "dist/index.js", | ||
"type": "module", | ||
"dependencies": { | ||
"@unified-latex/unified-latex-types": "^1.4.2" | ||
}, | ||
"files": [ | ||
"dist/**/*.ts", | ||
"dist/**/*.js", | ||
"dist/**/*.map", | ||
"dist/**/*.json" | ||
], | ||
"exports": { | ||
".": { | ||
"import": "./dist/index.js", | ||
"require": "./dist/index.cjs" | ||
"name": "@unified-latex/unified-latex-builder", | ||
"version": "1.6.0", | ||
"description": "Tools for constructing unified-latex ASTs", | ||
"main": "dist/index.js", | ||
"type": "module", | ||
"dependencies": { | ||
"@unified-latex/unified-latex-types": "^1.6.0" | ||
}, | ||
"./*js": "./dist/*js", | ||
"./*": { | ||
"import": "./dist/*.js", | ||
"require": "./dist/*.cjs" | ||
} | ||
}, | ||
"scripts": { | ||
"build": "npm run clean && mkdirp ./dist && npm run compile", | ||
"clean": "rm -rf ./dist && rm -rf tsconfig.tsbuildinfo", | ||
"compile": "tsc -b tsconfig.json & node build.js & for job in `jobs -p`; do wait ${job}; done", | ||
"package": "node ../../scripts/make-package.mjs", | ||
"publish": "cd dist && npm publish" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/siefkenj/unified-latex.git" | ||
}, | ||
"keywords": [ | ||
"pegjs", | ||
"latex", | ||
"parser", | ||
"prettier", | ||
"unified-latex", | ||
"unified" | ||
], | ||
"author": "Jason Siefken", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/siefkenj/unified-latex/issues" | ||
}, | ||
"homepage": "https://github.com/siefkenj/unified-latex#readme", | ||
"private": true | ||
"files": [ | ||
"dist/**/*.ts", | ||
"dist/**/*.js", | ||
"dist/**/*.map", | ||
"dist/**/*.json" | ||
], | ||
"exports": { | ||
".": { | ||
"import": "./dist/index.js", | ||
"require": "./dist/index.cjs" | ||
}, | ||
"./*js": "./dist/*js", | ||
"./*": { | ||
"import": "./dist/*.js", | ||
"require": "./dist/*.cjs" | ||
} | ||
}, | ||
"scripts": { | ||
"build": "npm run clean && mkdirp ./dist && npm run compile", | ||
"clean": "rm -rf ./dist && rm -rf tsconfig.tsbuildinfo", | ||
"compile": "tsc -b tsconfig.json & node build.js & for job in `jobs -p`; do wait ${job}; done", | ||
"package": "node ../../scripts/make-package.mjs", | ||
"publish": "cd dist && npm publish" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/siefkenj/unified-latex.git" | ||
}, | ||
"keywords": [ | ||
"pegjs", | ||
"latex", | ||
"parser", | ||
"prettier", | ||
"unified-latex", | ||
"unified" | ||
], | ||
"author": "Jason Siefken", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/siefkenj/unified-latex/issues" | ||
}, | ||
"homepage": "https://github.com/siefkenj/unified-latex#readme", | ||
"private": true | ||
} |
Oops, something went wrong.