Skip to content

Commit f8b93e0

Browse files
committed
v10.4.0
1 parent f03f868 commit f8b93e0

File tree

6 files changed

+21
-11
lines changed

6 files changed

+21
-11
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
language: node_js
22
node_js:
33
- "node"
4+
- "18"
5+
- "17"
6+
- "16"
47
- "15"
58
- "14"
69
- "13"

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
#### 10.4.0
2+
* 14/08/2022
3+
* #201 Add `exports` field to *package.json*.
4+
* #203 Preserve license comment after bundling.
5+
* #198 Use type predicate on `isDecimal`.
6+
17
#### 10.3.1
28
* 25/06/2021
39
* Remove minified versions. Refresh *README*.

LICENCE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT Licence.
22

3-
Copyright (c) 2021 Michael Mclaughlin
3+
Copyright (c) 2022 Michael Mclaughlin
44

55
Permission is hereby granted, free of charge, to any person obtaining
66
a copy of this software and associated documentation files (the

decimal.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33

44

55
/*!
6-
* decimal.js v10.3.1
6+
* decimal.js v10.4.0
77
* An arbitrary-precision Decimal type for JavaScript.
88
* https://github.com/MikeMcl/decimal.js
9-
* Copyright (c) 2021 Michael Mclaughlin <M8ch88l@gmail.com>
9+
* Copyright (c) 2022 Michael Mclaughlin <M8ch88l@gmail.com>
1010
* MIT Licence
1111
*/
1212

decimal.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/*!
2-
* decimal.js v10.3.1
2+
* decimal.js v10.4.0
33
* An arbitrary-precision Decimal type for JavaScript.
44
* https://github.com/MikeMcl/decimal.js
5-
* Copyright (c) 2021 Michael Mclaughlin <M8ch88l@gmail.com>
5+
* Copyright (c) 2022 Michael Mclaughlin <M8ch88l@gmail.com>
66
* MIT Licence
77
*/
88

package.json

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "decimal.js",
33
"description": "An arbitrary-precision Decimal type for JavaScript.",
4-
"version": "10.3.1",
4+
"version": "10.4.0",
55
"keywords": [
66
"arbitrary",
77
"precision",
@@ -25,12 +25,13 @@
2525
"browser": "decimal.js",
2626
"exports": {
2727
".": {
28-
"import": {
29-
"types": "./decimal.d.ts",
30-
"default": "./decimal.mjs"
31-
},
28+
"types": "./decimal.d.ts",
29+
"import": "./decimal.mjs",
3230
"require": "./decimal.js"
33-
}
31+
},
32+
"./decimal.mjs": "./decimal.mjs",
33+
"./decimal.js": "./decimal.js",
34+
"./package.json": "./package.json"
3435
},
3536
"author": {
3637
"name": "Michael Mclaughlin",

0 commit comments

Comments
 (0)