This commit is contained in:
Michael Mclaughlin 2016-07-14 20:29:44 +01:00
parent 34b79d1a0c
commit 4bc0fe696c
5 changed files with 9 additions and 9 deletions

View File

@ -1,12 +1,12 @@
language: node_js
node_js:
- "node"
- "4.1"
- "4.0"
- "6"
- "5"
- "4"
- "0.12"
- "0.11"
- "0.10"
- "0.8"
- "0.6"
- "iojs"

View File

@ -1,10 +1,10 @@
/*! bignumber.js v2.3.0 https://github.com/MikeMcl/bignumber.js/LICENCE */
/*! bignumber.js v2.4.0 https://github.com/MikeMcl/bignumber.js/LICENCE */
;(function (globalObj) {
'use strict';
/*
bignumber.js v2.3.0
bignumber.js v2.4.0
A JavaScript library for arbitrary-precision arithmetic.
https://github.com/MikeMcl/bignumber.js
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",
"main": "bignumber.js",
"version": "2.3.0",
"version": "2.4.0",
"homepage": "https://github.com/MikeMcl/bignumber.js",
"authors": [
"Michael Mclaughlin <M8ch88l@gmail.com>"

View File

@ -1,7 +1,7 @@
{
"name": "bignumber.js",
"description": "A library for arbitrary-precision decimal and non-decimal arithmetic",
"version": "2.3.0",
"version": "2.4.0",
"keywords": [
"arbitrary",
"precision",
@ -31,6 +31,6 @@
"license": "MIT",
"scripts": {
"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.3.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.4.0 https://github.com/MikeMcl/bignumber.js/LICENCE */\""
}
}