@nexim/action-state 1.0.4 → 1.0.5
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 +4 -0
- package/dist/main.cjs +3 -3
- package/dist/main.mjs +3 -3
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
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.5](https://github.com/the-nexim/nanolib/compare/@nexim/action-state@1.0.4...@nexim/action-state@1.0.5) (2026-02-05)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @nexim/action-state
|
|
9
|
+
|
|
6
10
|
## [1.0.4](https://github.com/the-nexim/nanolib/compare/@nexim/action-state@1.0.3...@nexim/action-state@1.0.4) (2025-11-22)
|
|
7
11
|
|
|
8
12
|
**Note:** Version bump only for package @nexim/action-state
|
package/dist/main.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/** 📦 @nexim/action-state v1.0.
|
|
2
|
-
__dev_mode__: console.debug("📦 @nexim/action-state v1.0.
|
|
3
|
-
"use strict";var __defProp=Object.defineProperty;var __getOwnPropDesc=Object.getOwnPropertyDescriptor;var __getOwnPropNames=Object.getOwnPropertyNames;var __hasOwnProp=Object.prototype.hasOwnProperty;var __export=(target,all)=>{for(var name in all)__defProp(target,name,{get:all[name],enumerable:true})};var __copyProps=(to,from,except,desc)=>{if(from&&typeof from==="object"||typeof from==="function"){for(let key of __getOwnPropNames(from))if(!__hasOwnProp.call(to,key)&&key!==except)__defProp(to,key,{get:()=>from[key],enumerable:!(desc=__getOwnPropDesc(from,key))||desc.enumerable})}return to};var __toCommonJS=mod=>__copyProps(__defProp({},"__esModule",{value:true}),mod);var main_exports={};__export(main_exports,{actionState:()=>actionState});module.exports=__toCommonJS(main_exports);var import_package_tracer=require("@alwatr/package-tracer");__dev_mode__:import_package_tracer.packageTracer.add("@nexim/action-state","1.0.
|
|
1
|
+
/** 📦 @nexim/action-state v1.0.5 */
|
|
2
|
+
__dev_mode__: console.debug("📦 @nexim/action-state v1.0.5");
|
|
3
|
+
"use strict";var __defProp=Object.defineProperty;var __getOwnPropDesc=Object.getOwnPropertyDescriptor;var __getOwnPropNames=Object.getOwnPropertyNames;var __hasOwnProp=Object.prototype.hasOwnProperty;var __export=(target,all)=>{for(var name in all)__defProp(target,name,{get:all[name],enumerable:true})};var __copyProps=(to,from,except,desc)=>{if(from&&typeof from==="object"||typeof from==="function"){for(let key of __getOwnPropNames(from))if(!__hasOwnProp.call(to,key)&&key!==except)__defProp(to,key,{get:()=>from[key],enumerable:!(desc=__getOwnPropDesc(from,key))||desc.enumerable})}return to};var __toCommonJS=mod=>__copyProps(__defProp({},"__esModule",{value:true}),mod);var main_exports={};__export(main_exports,{actionState:()=>actionState});module.exports=__toCommonJS(main_exports);var import_package_tracer=require("@alwatr/package-tracer");__dev_mode__:import_package_tracer.packageTracer.add("@nexim/action-state","1.0.5");var actionState=(state,actionRecord,thisArg=null)=>{const action=actionRecord[state];if(action==null)return;return action.call(thisArg)};
|
|
4
4
|
//# sourceMappingURL=main.cjs.map
|
package/dist/main.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/** 📦 @nexim/action-state v1.0.
|
|
2
|
-
__dev_mode__: console.debug("📦 @nexim/action-state v1.0.
|
|
3
|
-
import{packageTracer}from"@alwatr/package-tracer";__dev_mode__:packageTracer.add("@nexim/action-state","1.0.
|
|
1
|
+
/** 📦 @nexim/action-state v1.0.5 */
|
|
2
|
+
__dev_mode__: console.debug("📦 @nexim/action-state v1.0.5");
|
|
3
|
+
import{packageTracer}from"@alwatr/package-tracer";__dev_mode__:packageTracer.add("@nexim/action-state","1.0.5");var actionState=(state,actionRecord,thisArg=null)=>{const action=actionRecord[state];if(action==null)return;return action.call(thisArg)};export{actionState};
|
|
4
4
|
//# sourceMappingURL=main.mjs.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nexim/action-state",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "A utility function to execute state-specific actions with TypeScript type safety.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"state",
|
|
@@ -43,13 +43,13 @@
|
|
|
43
43
|
"watch": "wireit"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@alwatr/package-tracer": "^5.5.
|
|
46
|
+
"@alwatr/package-tracer": "^5.5.26"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@alwatr/nano-build": "^6.
|
|
50
|
-
"@nexim/typescript-config": "^2.0.
|
|
49
|
+
"@alwatr/nano-build": "^6.4.0",
|
|
50
|
+
"@nexim/typescript-config": "^2.0.2",
|
|
51
51
|
"ava": "^6.4.1",
|
|
52
|
-
"typedoc": "^0.28.
|
|
52
|
+
"typedoc": "^0.28.16",
|
|
53
53
|
"typedoc-plugin-markdown": "^4.9.0",
|
|
54
54
|
"typedoc-plugin-no-inherit": "^1.6.1",
|
|
55
55
|
"typescript": "^5.9.3",
|
|
@@ -105,5 +105,5 @@
|
|
|
105
105
|
"command": "typedoc"
|
|
106
106
|
}
|
|
107
107
|
},
|
|
108
|
-
"gitHead": "
|
|
108
|
+
"gitHead": "032c7e6a456ea65c76906bb1663dc84855791218"
|
|
109
109
|
}
|