@monerium/sdk 2.2.0 → 2.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -0
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.2.1](https://github.com/monerium/sdk/compare/v2.2.0...v2.2.1) (2023-04-26)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Miscellaneous
|
|
7
|
+
|
|
8
|
+
* backward support for node 16.15 ([a80379b](https://github.com/monerium/sdk/commit/a80379b8849f78e541d9f4455cd12cd676e7751f))
|
|
9
|
+
* ignore release please branches for build ([4b68cfa](https://github.com/monerium/sdk/commit/4b68cfa17380432136620acb67e856619333e3aa))
|
|
10
|
+
* move configs to reduce clutter in root folder ([#78](https://github.com/monerium/sdk/issues/78)) ([f2dcb21](https://github.com/monerium/sdk/commit/f2dcb2190811c9521e029eb15caef3b4ee557c4a))
|
|
11
|
+
|
|
3
12
|
## [2.2.0](https://github.com/monerium/sdk/compare/v2.1.23...v2.2.0) (2023-04-25)
|
|
4
13
|
|
|
5
14
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@monerium/sdk",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.1",
|
|
4
4
|
"description": "Everything you need to interact with the Monerium API - an electronic money issuer.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -17,23 +17,22 @@
|
|
|
17
17
|
"dist"
|
|
18
18
|
],
|
|
19
19
|
"engines": {
|
|
20
|
-
"node": ">=
|
|
20
|
+
"node": ">= 16.15"
|
|
21
21
|
},
|
|
22
22
|
"scripts": {
|
|
23
23
|
"build": "NODE_OPTIONS=--experimental-fetch yarn build:main",
|
|
24
|
-
"build:main": "tsc && vite build && dts-bundle-generator --config ./configs/dts-bundle-generator.ts",
|
|
24
|
+
"build:main": "tsc && vite --config ./configs/vite.config.ts build && dts-bundle-generator --config ./configs/dts-bundle-generator.ts",
|
|
25
25
|
"clean": "rm -rf dist && rm -rf node_modules",
|
|
26
26
|
"docs": "typedoc --options configs/typedoc.json",
|
|
27
27
|
"docs:watch": "yarn docs --watch",
|
|
28
28
|
"format": "prettier . --write",
|
|
29
|
-
"lint": "eslint . --ext .ts",
|
|
29
|
+
"lint": "eslint . -c ./configs/.eslintrc --ext .ts",
|
|
30
30
|
"prepare": "husky install",
|
|
31
31
|
"prepublish": "yarn build && yarn lint && yarn format && yarn test",
|
|
32
|
-
"start": "vite --host --open",
|
|
33
32
|
"test": "NODE_OPTIONS=--experimental-fetch yarn test:main",
|
|
34
|
-
"test:main": "jest",
|
|
35
|
-
"test:coverage": "
|
|
36
|
-
"watch": "tsc && vite build --watch"
|
|
33
|
+
"test:main": "jest --config ./configs/jest.config.ts",
|
|
34
|
+
"test:coverage": "yarn test --coverage",
|
|
35
|
+
"watch": "tsc && vite build --config ./configs/vite.config.ts --watch"
|
|
37
36
|
},
|
|
38
37
|
"devDependencies": {
|
|
39
38
|
"@commitlint/cli": "^17.4.1",
|
|
@@ -60,5 +59,6 @@
|
|
|
60
59
|
"typescript": "^5.0.4",
|
|
61
60
|
"vite": "^4.0.0"
|
|
62
61
|
},
|
|
63
|
-
"packageManager": "yarn@3.5.0"
|
|
62
|
+
"packageManager": "yarn@3.5.0",
|
|
63
|
+
"prettier": "./configs/.prettierrc.js"
|
|
64
64
|
}
|