Skip to content

Commit

Permalink
📦 Update: to version v1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
MuhammadSawalhy committed Dec 25, 2020
1 parent cac6405 commit 3a685b0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@scicave/math-latex-parser",
"version": "1.2.0",
"version": "1.2.1",
"description": "A mathematical parser for latex in math mode. We mean by mathematical that, arithmetic operations is considered for example if you pass \"1+2\", the result would by a (add node \"+\") with two children nodes of type number.",
"main": "./lib/index.js",
"files": [
Expand All @@ -25,7 +25,8 @@
"build:watch": "nodemon --watch src --watch tools --watch build.js --ignore src/__tests__ --ignore src/version.js -e js,pegjs -x npm run build && npm run debug",
"debug:watch": "nodemon --watch src --watch tools --watch build.js --watch debug.js --ignore src/__tests__ --ignore src/version.js -e js,pegjs -x npm run build && npm run debug",
"test:watch": "jest ./tests/parser.test.js --watch",
"preversion": "npm run prod"
"preversion": "npm run prod",
"postversion": "npm run build"
},
"jest": {
"verbose": true,
Expand Down
2 changes: 1 addition & 1 deletion src/version.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@

// this file is auto generated
// the current version is:
module.exports = "1.1.2";
module.exports = "1.2.1";

0 comments on commit 3a685b0

Please sign in to comment.