This commit is contained in:
Michael Mclaughlin 2015-12-15 21:12:17 +00:00
parent ea4278907e
commit ad704dc44f
5 changed files with 10 additions and 6 deletions

View File

@ -244,6 +244,10 @@ See [LICENCE](https://github.com/MikeMcl/bignumber.js/blob/master/LICENCE).
## Change Log ## Change Log
####2.1.4
* 15/12/2015
* Correct UMD.
####2.1.3 ####2.1.3
* 13/12/2015 * 13/12/2015
* Refactor re global object and crypto availability when bundling. * Refactor re global object and crypto availability when bundling.

File diff suppressed because one or more lines are too long

4
bignumber.min.js vendored

File diff suppressed because one or more lines are too long

View File

@ -1,7 +1,7 @@
{ {
"name": "bignumber.js", "name": "bignumber.js",
"main": "bignumber.js", "main": "bignumber.js",
"version": "2.1.3", "version": "2.1.4",
"homepage": "https://github.com/MikeMcl/bignumber.js", "homepage": "https://github.com/MikeMcl/bignumber.js",
"authors": [ "authors": [
"Michael Mclaughlin <M8ch88l@gmail.com>" "Michael Mclaughlin <M8ch88l@gmail.com>"

View File

@ -1,7 +1,7 @@
{ {
"name": "bignumber.js", "name": "bignumber.js",
"description": "A library for arbitrary-precision decimal and non-decimal arithmetic", "description": "A library for arbitrary-precision decimal and non-decimal arithmetic",
"version": "2.1.3", "version": "2.1.4",
"keywords": [ "keywords": [
"arbitrary", "arbitrary",
"precision", "precision",
@ -31,6 +31,6 @@
"license": "MIT", "license": "MIT",
"scripts": { "scripts": {
"test": "node ./test/every-test.js", "test": "node ./test/every-test.js",
"build": "uglifyjs bignumber.js --source-map bignumber.js.map -c -m -o bignumber.min.js --preamble \"/* bignumber.js v2.1.3 https://github.com/MikeMcl/bignumber.js/LICENCE */\"" "build": "uglifyjs bignumber.js --source-map bignumber.js.map -c -m -o bignumber.min.js --preamble \"/* bignumber.js v2.1.4 https://github.com/MikeMcl/bignumber.js/LICENCE */\""
} }
} }