@alwatr/debounce 1.0.0-rc.0 → 1.0.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 +6 -0
- package/dist/main.cjs +1 -1
- package/dist/main.mjs +1 -1
- package/package.json +16 -16
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.0.0](https://github.com/Alwatr/nanolib/compare/@alwatr/debounce@1.0.0-rc.0...@alwatr/debounce@1.0.0) (2025-09-14)
|
|
7
|
+
|
|
8
|
+
### 🔨 Code Refactoring
|
|
9
|
+
|
|
10
|
+
* **package:** update keywords in package.json for debounce, local-storage, and synapse packages ([09c9cca](https://github.com/Alwatr/nanolib/commit/09c9cca3cd600e9ffaf600fb1926c0ee884a1aa8))
|
|
11
|
+
|
|
6
12
|
## 1.0.0-rc.0 (2025-09-13)
|
|
7
13
|
|
|
8
14
|
### ✨ Features
|
package/dist/main.cjs
CHANGED
package/dist/main.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwatr/debounce",
|
|
3
3
|
"description": "A powerful, modern, and type-safe debouncer utility designed for high-performance applications. It's framework-agnostic, works seamlessly in both Node.js and browsers, and provides a rich API for fine-grained control over function execution.",
|
|
4
|
-
"version": "1.0.0
|
|
4
|
+
"version": "1.0.0",
|
|
5
5
|
"author": "S. Ali Mihandoost <ali.mihandoost@gmail.com>",
|
|
6
6
|
"bugs": "https://github.com/Alwatr/nanolib/issues",
|
|
7
7
|
"devDependencies": {
|
|
@@ -26,28 +26,28 @@
|
|
|
26
26
|
],
|
|
27
27
|
"homepage": "https://github.com/Alwatr/nanolib/tree/next/packages/debounce#readme",
|
|
28
28
|
"keywords": [
|
|
29
|
+
"alwatr",
|
|
30
|
+
"browser",
|
|
31
|
+
"cross-platform",
|
|
29
32
|
"debounce",
|
|
30
33
|
"debouncing",
|
|
31
|
-
"typescript",
|
|
32
|
-
"type-safe",
|
|
33
|
-
"javascript",
|
|
34
34
|
"esm",
|
|
35
|
+
"framework-agnostic",
|
|
36
|
+
"javascript",
|
|
37
|
+
"leading",
|
|
38
|
+
"lifecycle",
|
|
39
|
+
"memory-leak",
|
|
35
40
|
"module",
|
|
36
|
-
"
|
|
41
|
+
"nanolib",
|
|
37
42
|
"node",
|
|
38
43
|
"nodejs",
|
|
39
|
-
"cross-platform",
|
|
40
|
-
"universal",
|
|
41
|
-
"utility",
|
|
42
|
-
"util",
|
|
43
|
-
"leading",
|
|
44
44
|
"trailing",
|
|
45
|
-
"lifecycle",
|
|
46
|
-
"memory-leak",
|
|
47
45
|
"tree-shakable",
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
46
|
+
"type-safe",
|
|
47
|
+
"typescript",
|
|
48
|
+
"universal",
|
|
49
|
+
"util",
|
|
50
|
+
"utility"
|
|
51
51
|
],
|
|
52
52
|
"license": "MPL-2.0",
|
|
53
53
|
"main": "./dist/main.cjs",
|
|
@@ -77,5 +77,5 @@
|
|
|
77
77
|
},
|
|
78
78
|
"type": "module",
|
|
79
79
|
"types": "./dist/main.d.ts",
|
|
80
|
-
"gitHead": "
|
|
80
|
+
"gitHead": "4249b4e06eeb5739e1d6dbacfbce5b33a3180263"
|
|
81
81
|
}
|