Skip to content

Commit

Permalink
Merge pull request #34 from KQMATH/release/1.1.0
Browse files Browse the repository at this point in the history
Release/1.1.0
  • Loading branch information
andstor authored Apr 22, 2019
2 parents 542da2a + d33b741 commit cc03a1e
Show file tree
Hide file tree
Showing 18 changed files with 5,830 additions and 1,554 deletions.
3 changes: 3 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"presets": ["@babel/preset-env"]
}
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

# Node
node_modules
dist
lib
npm-debug.log
.env

Expand Down
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org).

## [Unreleased]

## [1.1.0] - 2019-04-22
### Added
- Piped expressions are now supported.

## [1.0.4] - 2019-01-27
### Added
- Added documentation for options and methods in README file.
Expand All @@ -17,7 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org).

## 1.0.2 - 2019-01-22


[Unreleased]: https://github.com/KQMATH/tex2max/compare/v1.0.4...HEAD
[Unreleased]: https://github.com/KQMATH/tex2max/compare/v1.1.0...HEAD
[1.1.0]: https://github.com/KQMATH/tex2max/compare/v1.0.4...v1.1.0
[1.0.4]: https://github.com/KQMATH/tex2max/compare/v1.0.3...v1.0.4
[1.0.3]: https://github.com/KQMATH/tex2max/compare/v1.0.2...v1.0.3
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# TeX2Max
[![npm version](http://img.shields.io/npm/v/tex2max.svg?style=flat)](https://npmjs.org/package/tex2max "View this project on npm")
[![Language grade: JavaScript](https://img.shields.io/lgtm/grade/javascript/g/KQMATH/tex2max.svg?)](https://lgtm.com/projects/g/KQMATH/tex2max/context:javascript)

TeX2Max is a JavaScript library for converting LaTeX math to Maxima code.

Expand All @@ -8,7 +9,7 @@ TeX2Max supports Node and AMD, in addition to normal browser support.

## Main
```text
dist/
lib/
├── tex2max.amd.js (AMD)
├── tex2max.js (UMD)
└── tex2max.common.js (CommonJS, default)
Expand Down
8 changes: 8 additions & 0 deletions ava.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export default {
require: [
"@babel/register"
],
babel: {
extensions: ['js']
}
};
Loading

0 comments on commit cc03a1e

Please sign in to comment.