@versini/dev-dependencies-common 2.2.0 → 3.1.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 -0
- package/package.json +8 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [3.1.0](https://github.com/aversini/dev-dependencies/compare/dev-dependencies-common-v3.0.0...dev-dependencies-common-v3.1.0) (2024-01-03)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* adding glob and culori ([4a8362f](https://github.com/aversini/dev-dependencies/commit/4a8362f155df9529fd4c1858db6bf5c95a5e7298))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* update non-breaking common dependencies ([702e20d](https://github.com/aversini/dev-dependencies/commit/702e20d5b80571f80dce6bf6d9566f478bf198a8))
|
|
14
|
+
|
|
15
|
+
## [3.0.0](https://github.com/aversini/dev-dependencies/compare/dev-dependencies-common-v2.2.0...dev-dependencies-common-v3.0.0) (2023-12-26)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### ⚠ BREAKING CHANGES
|
|
19
|
+
|
|
20
|
+
* update breaking common dependencies
|
|
21
|
+
|
|
22
|
+
### Features
|
|
23
|
+
|
|
24
|
+
* update breaking common dependencies ([4921e3a](https://github.com/aversini/dev-dependencies/commit/4921e3a6f47edd7ff6a57bb96c166d7c962d69d9))
|
|
25
|
+
|
|
3
26
|
## [2.2.0](https://github.com/aversini/dev-dependencies/compare/dev-dependencies-common-v2.1.0...dev-dependencies-common-v2.2.0) (2023-12-16)
|
|
4
27
|
|
|
5
28
|
|
package/package.json
CHANGED
|
@@ -1,28 +1,30 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@versini/dev-dependencies-common",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.1.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Arno Versini",
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@typescript-eslint/eslint-plugin": "6.
|
|
11
|
-
"@typescript-eslint/parser": "6.
|
|
10
|
+
"@typescript-eslint/eslint-plugin": "6.17.0",
|
|
11
|
+
"@typescript-eslint/parser": "6.17.0",
|
|
12
12
|
"barrelsby": "2.8.1",
|
|
13
13
|
"bundlemon": "2.0.2",
|
|
14
14
|
"chokidar": "3.5.3",
|
|
15
15
|
"cross-env": "7.0.3",
|
|
16
|
+
"culori": "3.3.0",
|
|
16
17
|
"dotenv": "16.3.1",
|
|
17
18
|
"eslint": "8.56.0",
|
|
18
19
|
"eslint-config-prettier": "9.1.0",
|
|
19
20
|
"eslint-plugin-simple-import-sort": "10.0.0",
|
|
20
21
|
"eslint-plugin-sort-keys-fix": "1.1.2",
|
|
21
|
-
"eslint-plugin-unicorn": "
|
|
22
|
+
"eslint-plugin-unicorn": "50.0.1",
|
|
23
|
+
"glob": "10.3.10",
|
|
22
24
|
"happy-dom": "12.10.3",
|
|
23
25
|
"husky": "8.0.3",
|
|
24
26
|
"jsdom": "23.0.1",
|
|
25
|
-
"lerna": "
|
|
27
|
+
"lerna": "8.0.1",
|
|
26
28
|
"lint-staged": "15.2.0",
|
|
27
29
|
"nodemon": "3.0.2",
|
|
28
30
|
"npm-run-all": "4.1.5",
|
|
@@ -31,5 +33,5 @@
|
|
|
31
33
|
"tsup": "8.0.1",
|
|
32
34
|
"typescript": "5.3.3"
|
|
33
35
|
},
|
|
34
|
-
"gitHead": "
|
|
36
|
+
"gitHead": "1e7bcb2acb2840ac6881d176849cdc344f545541"
|
|
35
37
|
}
|