@alwatr/exit-hook 1.1.3 → 1.1.4
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 +6 -0
- package/dist/main.cjs +2 -2
- package/dist/main.cjs.LEGAL.txt +0 -0
- package/dist/main.mjs +2 -2
- package/dist/main.mjs.LEGAL.txt +0 -0
- package/package.json +9 -8
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.1.4](https://github.com/Alwatr/nanolib/compare/@alwatr/exit-hook@1.1.3...@alwatr/exit-hook@1.1.4) (2024-10-11)
|
|
7
|
+
|
|
8
|
+
### Miscellaneous Chores
|
|
9
|
+
|
|
10
|
+
* include LICENSE and LEGAL files to publish ([09f366f](https://github.com/Alwatr/nanolib/commit/09f366f680bfa9fb26acb2cd1ccbc68c5a9e9ad8)) by @AliMD
|
|
11
|
+
|
|
6
12
|
## [1.1.3](https://github.com/Alwatr/nanolib/compare/@alwatr/exit-hook@1.1.2...@alwatr/exit-hook@1.1.3) (2024-10-11)
|
|
7
13
|
|
|
8
14
|
### Bug Fixes
|
package/dist/main.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* @alwatr/exit-hook v1.1.
|
|
1
|
+
/* @alwatr/exit-hook v1.1.4 */
|
|
2
2
|
"use strict";
|
|
3
3
|
var __defProp = Object.defineProperty;
|
|
4
4
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
@@ -26,7 +26,7 @@ __export(main_exports, {
|
|
|
26
26
|
module.exports = __toCommonJS(main_exports);
|
|
27
27
|
var import_dedupe = require("@alwatr/dedupe");
|
|
28
28
|
var import_package_tracer = require("@alwatr/package-tracer");
|
|
29
|
-
import_package_tracer.packageTracer.add("@alwatr/exit-hook", "1.1.
|
|
29
|
+
import_package_tracer.packageTracer.add("@alwatr/exit-hook", "1.1.4");
|
|
30
30
|
(0, import_dedupe.deduplicate)({ name: "@alwatr/exit-hook" });
|
|
31
31
|
var callbacks = null;
|
|
32
32
|
var exiting = false;
|
|
File without changes
|
package/dist/main.mjs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
/* @alwatr/exit-hook v1.1.
|
|
1
|
+
/* @alwatr/exit-hook v1.1.4 */
|
|
2
2
|
|
|
3
3
|
// src/main.ts
|
|
4
4
|
import { deduplicate } from "@alwatr/dedupe";
|
|
5
5
|
import { packageTracer } from "@alwatr/package-tracer";
|
|
6
|
-
packageTracer.add("@alwatr/exit-hook", "1.1.
|
|
6
|
+
packageTracer.add("@alwatr/exit-hook", "1.1.4");
|
|
7
7
|
deduplicate({ name: "@alwatr/exit-hook" });
|
|
8
8
|
var callbacks = null;
|
|
9
9
|
var exiting = false;
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwatr/exit-hook",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.4",
|
|
4
4
|
"description": "A utility for registering exit handlers in Node.js.",
|
|
5
5
|
"author": "S. Ali Mihandoost <ali.mihandoost@gmail.com>",
|
|
6
6
|
"keywords": [
|
|
@@ -34,7 +34,8 @@
|
|
|
34
34
|
},
|
|
35
35
|
"license": "AGPL-3.0-only",
|
|
36
36
|
"files": [
|
|
37
|
-
"**/*.{js,mjs,cjs,map,d.ts,html,md}",
|
|
37
|
+
"**/*.{js,mjs,cjs,map,d.ts,html,md,LEGAL.txt}",
|
|
38
|
+
"LICENSE",
|
|
38
39
|
"!demo/**/*"
|
|
39
40
|
],
|
|
40
41
|
"publishConfig": {
|
|
@@ -65,15 +66,15 @@
|
|
|
65
66
|
"clean": "rm -rfv dist *.tsbuildinfo"
|
|
66
67
|
},
|
|
67
68
|
"dependencies": {
|
|
68
|
-
"@alwatr/dedupe": "^1.1.
|
|
69
|
-
"@alwatr/package-tracer": "^1.0.
|
|
69
|
+
"@alwatr/dedupe": "^1.1.4",
|
|
70
|
+
"@alwatr/package-tracer": "^1.0.4"
|
|
70
71
|
},
|
|
71
72
|
"devDependencies": {
|
|
72
|
-
"@alwatr/nano-build": "^2.0.
|
|
73
|
-
"@alwatr/prettier-config": "^1.0.
|
|
74
|
-
"@alwatr/tsconfig-base": "^1.3.
|
|
73
|
+
"@alwatr/nano-build": "^2.0.1",
|
|
74
|
+
"@alwatr/prettier-config": "^1.0.6",
|
|
75
|
+
"@alwatr/tsconfig-base": "^1.3.2",
|
|
75
76
|
"@types/node": "^22.7.5",
|
|
76
77
|
"typescript": "^5.6.3"
|
|
77
78
|
},
|
|
78
|
-
"gitHead": "
|
|
79
|
+
"gitHead": "2a35f99b0347aacdccf3b6f28b30ca902f02a2f1"
|
|
79
80
|
}
|