@veams/status-quo 1.8.0 → 1.8.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.
@@ -1,12 +1,12 @@
1
1
 
2
- > @veams/status-quo@1.6.0 build
2
+ > @veams/status-quo@1.8.0 build
3
3
  > cross-env NODE_ENV=production npm-run-all compile
4
4
 
5
5
 
6
- > @veams/status-quo@1.6.0 compile
6
+ > @veams/status-quo@1.8.0 compile
7
7
  > npm-run-all bundle:ts
8
8
 
9
9
 
10
- > @veams/status-quo@1.6.0 bundle:ts
10
+ > @veams/status-quo@1.8.0 bundle:ts
11
11
  > tsc --project tsconfig.json
12
12
 
package/dist/index.d.ts CHANGED
@@ -3,9 +3,9 @@
3
3
  * Exports core functionality for both store and React integration.
4
4
  */
5
5
  import { setupStatusQuo } from './config/status-quo-config.js';
6
- import { BaseStateHandler, makeStateSingleton, NativeStateHandler, ObservableStateHandler, SignalStateHandler } from './store';
6
+ import { BaseStateHandler, makeStateSingleton, NativeStateHandler, ObservableStateHandler, SignalStateHandler } from './store/index.js';
7
7
  import type { DevToolsOptions, GlobalDevToolsOptions, DistinctComparator, DistinctOptions, StatusQuoConfig } from './config/status-quo-config.js';
8
- import type { StateSingleton, StateSingletonOptions } from './store';
8
+ import type { StateSingleton, StateSingletonOptions } from './store/index.js';
9
9
  import type { StateSubscriptionHandler } from './types/types.js';
10
10
  /**
11
11
  * Core state management functions and classes.
package/dist/index.js CHANGED
@@ -4,7 +4,7 @@
4
4
  */
5
5
  // Import internal setup functions and core state handlers.
6
6
  import { setupStatusQuo } from './config/status-quo-config.js';
7
- import { BaseStateHandler, makeStateSingleton, NativeStateHandler, ObservableStateHandler, SignalStateHandler, } from './store';
7
+ import { BaseStateHandler, makeStateSingleton, NativeStateHandler, ObservableStateHandler, SignalStateHandler, } from './store/index.js';
8
8
  /**
9
9
  * Core state management functions and classes.
10
10
  */
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,2DAA2D;AAC3D,OAAO,EAAE,cAAc,EAAE,MAAM,+BAA+B,CAAC;AAC/D,OAAO,EACL,gBAAgB,EAChB,kBAAkB,EAClB,kBAAkB,EAClB,sBAAsB,EACtB,kBAAkB,GACnB,MAAM,SAAS,CAAC;AAajB;;GAEG;AACH,OAAO;AACL,8CAA8C;AAC9C,gBAAgB;AAChB,0DAA0D;AAC1D,kBAAkB;AAClB,oDAAoD;AACpD,kBAAkB;AAClB,kDAAkD;AAClD,sBAAsB;AACtB,gDAAgD;AAChD,cAAc;AACd,2CAA2C;AAC3C,kBAAkB,GACnB,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,2DAA2D;AAC3D,OAAO,EAAE,cAAc,EAAE,MAAM,+BAA+B,CAAC;AAC/D,OAAO,EACL,gBAAgB,EAChB,kBAAkB,EAClB,kBAAkB,EAClB,sBAAsB,EACtB,kBAAkB,GACnB,MAAM,kBAAkB,CAAC;AAa1B;;GAEG;AACH,OAAO;AACL,8CAA8C;AAC9C,gBAAgB;AAChB,0DAA0D;AAC1D,kBAAkB;AAClB,oDAAoD;AACpD,kBAAkB;AAClB,kDAAkD;AAClD,sBAAsB;AACtB,gDAAgD;AAChD,cAAc;AACd,2CAA2C;AAC3C,kBAAkB,GACnB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veams/status-quo",
3
- "version": "1.8.0",
3
+ "version": "1.8.1",
4
4
  "description": "The manager to rule states in frontend.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
@@ -97,5 +97,19 @@
97
97
  },
98
98
  "bugs": {
99
99
  "url": "https://github.com/Veams/veams/issues"
100
+ },
101
+ "release-it": {
102
+ "git": {
103
+ "tagName": "${npm.name}@${version}",
104
+ "pushRepo": "origin",
105
+ "commitMessage": "chore(status-quo): release ${npm.name}@${version}"
106
+ },
107
+ "github": {
108
+ "release": true,
109
+ "releaseName": "${npm.name}@${version}"
110
+ },
111
+ "npm": {
112
+ "publish": true
113
+ }
100
114
  }
101
115
  }
package/src/index.ts CHANGED
@@ -11,7 +11,7 @@ import {
11
11
  NativeStateHandler,
12
12
  ObservableStateHandler,
13
13
  SignalStateHandler,
14
- } from './store';
14
+ } from './store/index.js';
15
15
 
16
16
  // Import necessary types for external use.
17
17
  import type {
@@ -21,7 +21,7 @@ import type {
21
21
  DistinctOptions,
22
22
  StatusQuoConfig,
23
23
  } from './config/status-quo-config.js';
24
- import type { StateSingleton, StateSingletonOptions } from './store';
24
+ import type { StateSingleton, StateSingletonOptions } from './store/index.js';
25
25
  import type { StateSubscriptionHandler } from './types/types.js';
26
26
 
27
27
  /**