@adaas/a-utils 0.1.28 → 0.1.29

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@adaas/a-utils",
3
- "version": "0.1.28",
3
+ "version": "0.1.29",
4
4
  "description": "A-Utils is a set of utilities that are used across the ADAAS ecosystem. This package is designed to be a collection of utilities that are used across the ADAAS ecosystem.",
5
5
  "license": "Apache-2.0",
6
6
  "main": "./dist/index.cjs",
@@ -80,7 +80,7 @@
80
80
  "build": "tsup --config tsup.config.ts"
81
81
  },
82
82
  "dependencies": {
83
- "@adaas/a-concept": "^0.1.48"
83
+ "@adaas/a-concept": "^0.1.50"
84
84
  },
85
85
  "devDependencies": {
86
86
  "@types/chai": "^4.3.14",
@@ -223,7 +223,8 @@ export class A_StateMachine<
223
223
  const scope = new A_Scope({
224
224
  name: `A-StateMachine-Transition-Scope-${transitionName}`,
225
225
  fragments: [transition]
226
- });
226
+ })
227
+ .inherit(A_Context.scope(this));
227
228
 
228
229
  try {
229
230