fastypest 1.4.7 → 1.4.9
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 +18 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,24 @@
|
|
|
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
|
+
### [1.4.9](https://github.com/juanjoGonDev/fastypest/compare/v1.4.0...v1.4.9) (2024-06-18)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* change husky prepare to setup ([6143d6d](https://github.com/juanjoGonDev/fastypest/commit/6143d6d5cf2a778b161a82ea003a2c991e0563a9))
|
|
11
|
+
* **npm:** husky not found ([cfa9a49](https://github.com/juanjoGonDev/fastypest/commit/cfa9a49344177959fa13e72e996501ff61efaed5))
|
|
12
|
+
* prepare husky ([#413](https://github.com/juanjoGonDev/fastypest/issues/413)) ([36fda43](https://github.com/juanjoGonDev/fastypest/commit/36fda43cca589f8d7953c0e236d36bc3509c2b98))
|
|
13
|
+
|
|
14
|
+
### [1.4.8](https://github.com/juanjoGonDev/fastypest/compare/v1.4.0...v1.4.8) (2024-06-17)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* change husky prepare to setup ([6143d6d](https://github.com/juanjoGonDev/fastypest/commit/6143d6d5cf2a778b161a82ea003a2c991e0563a9))
|
|
20
|
+
* **npm:** husky not found ([cfa9a49](https://github.com/juanjoGonDev/fastypest/commit/cfa9a49344177959fa13e72e996501ff61efaed5))
|
|
21
|
+
* prepare husky ([#413](https://github.com/juanjoGonDev/fastypest/issues/413)) ([36fda43](https://github.com/juanjoGonDev/fastypest/commit/36fda43cca589f8d7953c0e236d36bc3509c2b98))
|
|
22
|
+
|
|
5
23
|
### [1.4.7](https://github.com/juanjoGonDev/fastypest/compare/v1.4.0...v1.4.7) (2024-06-17)
|
|
6
24
|
|
|
7
25
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fastypest",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.9",
|
|
4
4
|
"description": "Restores the database automatically after each test. Allows serial execution of tests without having to delete and restore the database having to stop the application",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"yarn": "4.2.2"
|
|
14
14
|
},
|
|
15
15
|
"scripts": {
|
|
16
|
-
"
|
|
16
|
+
"setup": "husky install",
|
|
17
17
|
"prebuild": "rimraf dist",
|
|
18
18
|
"build": "tsc",
|
|
19
19
|
"eslint": "eslint --fix .",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"test:ci": "jest --runInBand --forceExit --verbose --showSeed --config ./tests/jest.config.json",
|
|
22
22
|
"test": "yarn build && yarn test:ci",
|
|
23
23
|
"docker": "ts-node -r tsconfig-paths/register scripts/prepare-docker.ts",
|
|
24
|
-
"release": "standard-version
|
|
24
|
+
"release": "standard-version"
|
|
25
25
|
},
|
|
26
26
|
"repository": {
|
|
27
27
|
"type": "git",
|
|
@@ -51,8 +51,8 @@
|
|
|
51
51
|
"@eslint/js": "^9.5.0",
|
|
52
52
|
"@types/cross-spawn": "^6.0.6",
|
|
53
53
|
"@types/jest": "^29.5.12",
|
|
54
|
-
"@types/node": "^20.14.
|
|
55
|
-
"@typescript-eslint/eslint-plugin": "^7.13.
|
|
54
|
+
"@types/node": "^20.14.4",
|
|
55
|
+
"@typescript-eslint/eslint-plugin": "^7.13.1",
|
|
56
56
|
"cross-spawn": "^7.0.3",
|
|
57
57
|
"eslint": "^9.5.0",
|
|
58
58
|
"eslint-config-standard-with-typescript": "^43.0.1",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"eslint-plugin-n": "^17.9.0",
|
|
61
61
|
"eslint-plugin-prettier": "^5.1.3",
|
|
62
62
|
"eslint-plugin-promise": "^6.2.0",
|
|
63
|
-
"globals": "^15.
|
|
63
|
+
"globals": "^15.6.0",
|
|
64
64
|
"husky": "^9.0.11",
|
|
65
65
|
"jest": "^29.7.0",
|
|
66
66
|
"mariadb": "^3.3.1",
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"tsconfig-paths": "^4.2.0",
|
|
74
74
|
"typeorm": "^0.3.20",
|
|
75
75
|
"typescript": "^5.4.5",
|
|
76
|
-
"typescript-eslint": "^7.13.
|
|
76
|
+
"typescript-eslint": "^7.13.1"
|
|
77
77
|
},
|
|
78
78
|
"peerDependencies": {
|
|
79
79
|
"typeorm": "^0.3.20"
|