pull/210/head v10.4.0
Michael Mclaughlin 2 years ago
parent f03f8686b6
commit f8b93e0bfa

@ -1,6 +1,9 @@
language: node_js
node_js:
- "node"
- "18"
- "17"
- "16"
- "15"
- "14"
- "13"

@ -1,3 +1,9 @@
#### 10.4.0
* 14/08/2022
* #201 Add `exports` field to *package.json*.
* #203 Preserve license comment after bundling.
* #198 Use type predicate on `isDecimal`.
#### 10.3.1
* 25/06/2021
* Remove minified versions. Refresh *README*.

@ -1,6 +1,6 @@
The MIT Licence.
Copyright (c) 2021 Michael Mclaughlin
Copyright (c) 2022 Michael Mclaughlin
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the

@ -3,10 +3,10 @@
/*!
* decimal.js v10.3.1
* decimal.js v10.4.0
* An arbitrary-precision Decimal type for JavaScript.
* https://github.com/MikeMcl/decimal.js
* Copyright (c) 2021 Michael Mclaughlin <M8ch88l@gmail.com>
* Copyright (c) 2022 Michael Mclaughlin <M8ch88l@gmail.com>
* MIT Licence
*/

@ -1,8 +1,8 @@
/*!
* decimal.js v10.3.1
* decimal.js v10.4.0
* An arbitrary-precision Decimal type for JavaScript.
* https://github.com/MikeMcl/decimal.js
* Copyright (c) 2021 Michael Mclaughlin <M8ch88l@gmail.com>
* Copyright (c) 2022 Michael Mclaughlin <M8ch88l@gmail.com>
* MIT Licence
*/

@ -1,7 +1,7 @@
{
"name": "decimal.js",
"description": "An arbitrary-precision Decimal type for JavaScript.",
"version": "10.3.1",
"version": "10.4.0",
"keywords": [
"arbitrary",
"precision",
@ -25,12 +25,13 @@
"browser": "decimal.js",
"exports": {
".": {
"import": {
"types": "./decimal.d.ts",
"default": "./decimal.mjs"
},
"types": "./decimal.d.ts",
"import": "./decimal.mjs",
"require": "./decimal.js"
}
},
"./decimal.mjs": "./decimal.mjs",
"./decimal.js": "./decimal.js",
"./package.json": "./package.json"
},
"author": {
"name": "Michael Mclaughlin",

Loading…
Cancel
Save