@vixoniccom/modules 2.12.0-dev.5 → 2.12.0
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 +23 -3
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,14 +2,34 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
-
## [2.12.0
|
|
5
|
+
## [2.12.0](https://gitlab.com/mandomedio/vixonic/modules/compare/v2.12.0-rc.0...v2.12.0) (2021-09-13)
|
|
6
6
|
|
|
7
|
-
## 2.12.0-dev.
|
|
7
|
+
## [2.12.0-rc.0](https://gitlab.com/mandomedio/vixonic/modules/compare/v2.12.0-dev.2...v2.12.0-rc.0) (2021-08-24)
|
|
8
|
+
|
|
9
|
+
## [2.12.0-dev.2](https://gitlab.com/mandomedio/vixonic/modules/compare/v2.12.0-dev.1...v2.12.0-dev.2) (2021-08-19)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
* **release:** node was upgrated to v14 ([259116d](https://gitlab.com/mandomedio/vixonic/modules/commit/259116d09a2c8b8b6b9f61a6e5d9b693daea6c42))
|
|
15
|
+
|
|
16
|
+
## [2.12.0-dev.1](https://gitlab.com/mandomedio/vixonic/modules/compare/v2.12.0-dev.0...v2.12.0-dev.1) (2021-08-19)
|
|
8
17
|
|
|
9
18
|
|
|
10
19
|
### Bug Fixes
|
|
11
20
|
|
|
12
|
-
* **release:**
|
|
21
|
+
* **release:** Typescript was upgrated to v4 and also several fixes were apply with the new dependencies ([e706e00](https://gitlab.com/mandomedio/vixonic/modules/commit/e706e007b9a31b4ef44aeafdb7002e5007e61627))
|
|
22
|
+
|
|
23
|
+
<a name="2.12.0-dev.0"></a>
|
|
24
|
+
# 2.12.0-dev.0 (2021-08-18)
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### Features
|
|
28
|
+
|
|
29
|
+
* **release:** Node JS was upgrated to v10 ([51af8e1](https://gitlab.com/mandomedio/vixonic/modules/commit/51af8e1))
|
|
30
|
+
* **release:** Node JS was upgrated to v12 and Typescript to v2.8 ([aee58cf](https://gitlab.com/mandomedio/vixonic/modules/commit/aee58cf))
|
|
31
|
+
|
|
32
|
+
|
|
13
33
|
|
|
14
34
|
<a name="2.11.0"></a>
|
|
15
35
|
# [2.11.0](https://bitbucket.org/vixonicmodules/modules/compare/v2.10.0...v2.11.0) (2019-01-21)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vixoniccom/modules",
|
|
3
|
-
"version": "2.12.0
|
|
3
|
+
"version": "2.12.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -9,12 +9,13 @@
|
|
|
9
9
|
"build": "tsc",
|
|
10
10
|
"release": "standard-version",
|
|
11
11
|
"prerelease-dev": "standard-version --prerelease dev",
|
|
12
|
+
"prerelease-rc": "standard-version --prerelease rc",
|
|
12
13
|
"test": "ts-node ./test/index.ts"
|
|
13
14
|
},
|
|
14
15
|
"author": "",
|
|
15
16
|
"license": "ISC",
|
|
16
17
|
"devDependencies": {
|
|
17
|
-
"@types/node": "^
|
|
18
|
+
"@types/node": "^14.17.10",
|
|
18
19
|
"jest": "^27.0.6",
|
|
19
20
|
"standard-version": "^9.3.1",
|
|
20
21
|
"ts-node": "^10.2.1",
|