@versini/dev-dependencies-types 1.1.0 → 1.1.2
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 +15 -0
- package/package.json +6 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.1.2](https://github.com/aversini/dev-dependencies/compare/dev-dependencies-types-v1.1.1...dev-dependencies-types-v1.1.2) (2024-01-17)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **types:** adding express types ([f9f877e](https://github.com/aversini/dev-dependencies/commit/f9f877ef6332080ffaf21cbb78cb8f924046c345))
|
|
9
|
+
* **types:** bump types to latest ([a6b66ed](https://github.com/aversini/dev-dependencies/commit/a6b66edb348c420601409b341a38bef82c05e7f4))
|
|
10
|
+
|
|
11
|
+
## [1.1.1](https://github.com/aversini/dev-dependencies/compare/dev-dependencies-types-v1.1.0...dev-dependencies-types-v1.1.1) (2024-01-13)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* **types:** bump dependencies ([45938fd](https://github.com/aversini/dev-dependencies/commit/45938fd7f3be20df054144ccc4784238c74f21f8))
|
|
17
|
+
|
|
3
18
|
## [1.1.0](https://github.com/aversini/dev-dependencies/compare/dev-dependencies-types-v1.0.3...dev-dependencies-types-v1.1.0) (2024-01-10)
|
|
4
19
|
|
|
5
20
|
|
package/package.json
CHANGED
|
@@ -1,22 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@versini/dev-dependencies-types",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Arno Versini",
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
+
"@types/bytes": "3.1.4",
|
|
10
11
|
"@types/culori": "2.0.4",
|
|
12
|
+
"@types/express": "4.17.21",
|
|
11
13
|
"@types/fs-extra": "11.0.4",
|
|
12
14
|
"@types/jest": "29.5.11",
|
|
13
15
|
"@types/lodash-es": "4.17.12",
|
|
14
|
-
"@types/node": "20.
|
|
16
|
+
"@types/node": "20.11.5",
|
|
15
17
|
"@types/node-notifier": "8.0.5",
|
|
16
|
-
"@types/react": "18.2.
|
|
18
|
+
"@types/react": "18.2.48",
|
|
17
19
|
"@types/react-dom": "18.2.18",
|
|
18
20
|
"@types/uuid": "9.0.7",
|
|
19
21
|
"@types/yargs": "17.0.32"
|
|
20
22
|
},
|
|
21
|
-
"gitHead": "
|
|
23
|
+
"gitHead": "5b1fc8171f1da2453107b43d5a20442938eb5382"
|
|
22
24
|
}
|