| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -2,7 +2,7 @@ | |||
| 2 | 2 | https://github.com/josdejong/mathjs | |
| 3 | 3 | ||
| 4 | 4 | ||
| 5 | - ## not yet released, version 0.18.0 | ||
| 5 | + ## 2014-01-18, version 0.18.0 | ||
| 6 | 6 | ||
| 7 | 7 | - Changed matrix index notation of expression parser from round brackets to | |
| 8 | 8 | square brackets, for example `A[1, 1:3]` instead of `A(1, 1:3)`. | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -13,7 +13,8 @@ var INDEX = './index.js', | |||
| 13 | 13 | HEADER = './lib/header.js', | |
| 14 | 14 | DIST = './dist', | |
| 15 | 15 | MATHJS = DIST + '/math.js', | |
| 16 | - MATHJS_MIN = DIST + '/math.min.js'; | ||
| 16 | + MATHJS_MIN = DIST + '/math.min.js', | ||
| 17 | + MATHJS_MAP = MATHJS_MIN + '.map'; | ||
| 17 | 18 | ||
| 18 | 19 | // register start time | |
| 19 | 20 | var start = +new Date(); | |
@@ -70,6 +71,9 @@ task('minify', ['bundle'], function () { | |||
| 70 | 71 | var result = util.minify({ | |
| 71 | 72 | src: MATHJS, | |
| 72 | 73 | dest: MATHJS_MIN, | |
| 74 | + options: { | ||
| 75 | + outSourceMap: MATHJS_MAP // TODO: map doesn't work | ||
| 76 | + }, | ||
| 73 | 77 | header: util.read(HEADER) | |
| 74 | 78 | }); | |
| 75 | 79 | updateVersion(MATHJS_MIN); | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -111,7 +111,7 @@ To see the coverage results, open the generated report in your browser: | |||
| 111 | 111 | ||
| 112 | 112 | ## License | |
| 113 | 113 | ||
| 114 | - Copyright (C) 2013 Jos de Jong <wjosdejong@gmail.com> | ||
| 114 | + Copyright (C) 2013-2014 Jos de Jong <wjosdejong@gmail.com> | ||
| 115 | 115 | ||
| 116 | 116 | Licensed under the Apache License, Version 2.0 (the "License"); | |
| 117 | 117 | you may not use this file except in compliance with the License. | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -24,7 +24,7 @@ | |||
| 24 | 24 | * cat script.txt | mathjs > results.txt Run input stream, output to file | |
| 25 | 25 | * | |
| 26 | 26 | * @license | |
| 27 | - * Copyright (C) 2013 Jos de Jong <wjosdejong@gmail.com> | ||
| 27 | + * Copyright (C) 2013-2014 Jos de Jong <wjosdejong@gmail.com> | ||
| 28 | 28 | * | |
| 29 | 29 | * Licensed under the Apache License, Version 2.0 (the "License"); you may not | |
| 30 | 30 | * use this file except in compliance with the License. You may obtain a copy | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,6 +1,6 @@ | |||
| 1 | 1 | { | |
| 2 | 2 | "name": "mathjs", | |
| 3 | - "version": "0.18.0-SNAPSHOT", | ||
| 3 | + "version": "0.18.0", | ||
| 4 | 4 | "main": "./dist/math.js", | |
| 5 | 5 | "ignore": [ | |
| 6 | 6 | "coverage", | |
| Back | FazBrowse Home | New Git URL |
0 commit comments