@versini/dev-dependencies-server 1.0.1 → 1.1.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 +19 -0
- package/package.json +5 -34
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.1.1](https://github.com/aversini/dev-dependencies/compare/dev-dependencies-server-v1.1.0...dev-dependencies-server-v1.1.1) (2023-11-10)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* update server dependencies to use common ([1f4ce42](https://github.com/aversini/dev-dependencies/commit/1f4ce42bdb47902c58467dbebf2a5c54f80e03bd))
|
|
9
|
+
|
|
10
|
+
## [1.1.0](https://github.com/aversini/dev-dependencies/compare/dev-dependencies-server-v1.0.1...dev-dependencies-server-v1.1.0) (2023-11-10)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* adding npm-run-all and tsup ([908aedb](https://github.com/aversini/dev-dependencies/commit/908aedbb322f9b75173449d011d522c47683f41b))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* bump non-breaking dependencies ([59bc4fd](https://github.com/aversini/dev-dependencies/commit/59bc4fd7506540f6933d88c6ccff4548378e35c1))
|
|
21
|
+
|
|
3
22
|
## [1.0.1](https://github.com/aversini/dev-dependencies/compare/dev-dependencies-server-v1.0.0...dev-dependencies-server-v1.0.1) (2023-10-25)
|
|
4
23
|
|
|
5
24
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@versini/dev-dependencies-server",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Arno Versini",
|
|
6
6
|
"publishConfig": {
|
|
@@ -9,40 +9,11 @@
|
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"@jest/globals": "29.7.0",
|
|
11
11
|
"@swc/cli": "0.1.62",
|
|
12
|
-
"@swc/core": "1.3.
|
|
12
|
+
"@swc/core": "1.3.96",
|
|
13
13
|
"@swc/helpers": "0.5.3",
|
|
14
14
|
"@swc/jest": "0.2.29",
|
|
15
|
-
"@
|
|
16
|
-
"
|
|
17
|
-
"@types/lodash-es": "4.17.10",
|
|
18
|
-
"@types/node": "20.8.8",
|
|
19
|
-
"@types/node-notifier": "8.0.4",
|
|
20
|
-
"@types/react": "18.2.31",
|
|
21
|
-
"@types/react-dom": "18.2.14",
|
|
22
|
-
"@types/yargs": "17.0.29",
|
|
23
|
-
"@typescript-eslint/eslint-plugin": "6.9.0",
|
|
24
|
-
"@typescript-eslint/parser": "6.9.0",
|
|
25
|
-
"@vitejs/plugin-react-swc": "3.4.0",
|
|
26
|
-
"barrelsby": "2.8.1",
|
|
27
|
-
"chokidar": "3.5.3",
|
|
28
|
-
"cross-env": "7.0.3",
|
|
29
|
-
"eslint": "8.52.0",
|
|
30
|
-
"eslint-config-prettier": "9.0.0",
|
|
31
|
-
"eslint-plugin-react-hooks": "4.6.0",
|
|
32
|
-
"eslint-plugin-react-refresh": "0.4.3",
|
|
33
|
-
"eslint-plugin-sort-keys-fix": "1.1.2",
|
|
34
|
-
"eslint-plugin-unicorn": "48.0.1",
|
|
35
|
-
"husky": "8.0.3",
|
|
36
|
-
"jest": "29.7.0",
|
|
37
|
-
"lerna": "7.4.1",
|
|
38
|
-
"lint-staged": "15.0.2",
|
|
39
|
-
"nodemon": "3.0.1",
|
|
40
|
-
"prettier": "3.0.3",
|
|
41
|
-
"prettier-plugin-tailwindcss": "0.5.6",
|
|
42
|
-
"rimraf": "5.0.5",
|
|
43
|
-
"tailwindcss": "3.3.4",
|
|
44
|
-
"typescript": "5.2.2",
|
|
45
|
-
"vite": "4.5.0"
|
|
15
|
+
"@versini/dev-dependencies-common": ">=1.0.0",
|
|
16
|
+
"jest": "29.7.0"
|
|
46
17
|
},
|
|
47
|
-
"gitHead": "
|
|
18
|
+
"gitHead": "8ba179efc74ac327cb47fb3950e877f0d060efad"
|
|
48
19
|
}
|