Skip to content

Commit

Permalink
v1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
siefkenj committed Jan 17, 2024
1 parent 91bc6e8 commit e3f1dc1
Show file tree
Hide file tree
Showing 36 changed files with 2,099 additions and 2,099 deletions.
4 changes: 2 additions & 2 deletions lerna.json
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"
}
372 changes: 186 additions & 186 deletions package-lock.json

Large diffs are not rendered by default.

90 changes: 45 additions & 45 deletions packages/structured-clone/package.json
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"
}
94 changes: 47 additions & 47 deletions packages/support-tables/package.json
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
}
100 changes: 50 additions & 50 deletions packages/unified-latex-builder/package.json
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
}
Loading

0 comments on commit e3f1dc1

Please sign in to comment.