@endge/utils 0.25.3 → 0.26.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@endge/utils",
3
3
  "type": "module",
4
- "version": "0.25.3",
4
+ "version": "0.26.0",
5
5
  "private": false,
6
6
  "sideEffects": false,
7
7
  "exports": {
@@ -18,7 +18,8 @@
18
18
  "scripts": {
19
19
  "clean": "rimraf dist tsconfig.tsbuildinfo",
20
20
  "dev": "vite build --watch",
21
- "build": "vite build",
21
+ "build": "pnpm typecheck && vite build",
22
+ "typecheck": "tsc -p tsconfig.app.json --noEmit",
22
23
  "test": "vitest",
23
24
  "lint-check": "eslint . --cache",
24
25
  "lint-fix": "eslint . --fix --cache"
@@ -1,8 +0,0 @@
1
- /** Внутренний механизм уведомления generic utilities об изменениях. */
2
- export declare class ChangeNotifier {
3
- private readonly _listeners;
4
- /** Подписывает listener на изменения utility owner. */
5
- subscribe(listener: () => void): () => void;
6
- /** Уведомляет текущих listeners об изменении. */
7
- notify(): void;
8
- }
File without changes