This commit is contained in:
Michael Mclaughlin 2016-03-07 23:10:58 +00:00
parent 99067bdbf8
commit 65e21f202a
4 changed files with 6 additions and 6 deletions

View File

@ -1,10 +1,10 @@
/*! bignumber.js v2.2.0 https://github.com/MikeMcl/bignumber.js/LICENCE */ /*! bignumber.js v2.3.0 https://github.com/MikeMcl/bignumber.js/LICENCE */
;(function (globalObj) { ;(function (globalObj) {
'use strict'; 'use strict';
/* /*
bignumber.js v2.2.0 bignumber.js v2.3.0
A JavaScript library for arbitrary-precision arithmetic. A JavaScript library for arbitrary-precision arithmetic.
https://github.com/MikeMcl/bignumber.js https://github.com/MikeMcl/bignumber.js
Copyright (c) 2016 Michael Mclaughlin <M8ch88l@gmail.com> Copyright (c) 2016 Michael Mclaughlin <M8ch88l@gmail.com>

2
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.2.0", "version": "2.3.0",
"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.2.0", "version": "2.3.0",
"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.2.0 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.3.0 https://github.com/MikeMcl/bignumber.js/LICENCE */\""
} }
} }