@gesslar/actioneer 0.2.7 → 0.2.9
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 +9 -9
- package/src/lib/ActionBuilder.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gesslar/actioneer",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.9",
|
|
4
4
|
"description": "Ready? Set?? ACTION!! pew! pew! pew!",
|
|
5
5
|
"main": "./src/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"lint": "eslint src/",
|
|
24
24
|
"lint:fix": "eslint src/ --fix",
|
|
25
25
|
"types:build": "tsc -p tsconfig.types.json && eslint --fix \"src/types/**/*.d.ts\"",
|
|
26
|
-
"submit": "npm publish --access public",
|
|
26
|
+
"submit": "npm publish --access public --//registry.npmjs.org/:_authToken=\"${NPM_ACCESS_TOKEN}\"",
|
|
27
27
|
"update": "npx npm-check-updates -u && npm install",
|
|
28
28
|
"test": "node --test tests/unit/*.test.js",
|
|
29
29
|
"test:unit": "node --test tests/unit/*.test.js",
|
|
@@ -47,15 +47,15 @@
|
|
|
47
47
|
"license": "Unlicense",
|
|
48
48
|
"homepage": "https://github.com/gesslar/toolkit#readme",
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@stylistic/eslint-plugin": "^5.
|
|
51
|
-
"@types/node": "^
|
|
52
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
53
|
-
"@typescript-eslint/parser": "^8.
|
|
54
|
-
"eslint": "^9.
|
|
55
|
-
"eslint-plugin-jsdoc": "^61.
|
|
50
|
+
"@stylistic/eslint-plugin": "^5.6.1",
|
|
51
|
+
"@types/node": "^25.0.3",
|
|
52
|
+
"@typescript-eslint/eslint-plugin": "^8.50.1",
|
|
53
|
+
"@typescript-eslint/parser": "^8.50.1",
|
|
54
|
+
"eslint": "^9.39.2",
|
|
55
|
+
"eslint-plugin-jsdoc": "^61.5.0",
|
|
56
56
|
"typescript": "^5.9.3"
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@gesslar/toolkit": "^
|
|
59
|
+
"@gesslar/toolkit": "^2.2.1"
|
|
60
60
|
}
|
|
61
61
|
}
|
package/src/lib/ActionBuilder.js
CHANGED
|
@@ -250,7 +250,7 @@ export default class ActionBuilder {
|
|
|
250
250
|
if(action && !action.tag) {
|
|
251
251
|
action.tag = this.#tag
|
|
252
252
|
|
|
253
|
-
action.setup.call(action, this)
|
|
253
|
+
await Promise.resolve(action.setup.call(action, this))
|
|
254
254
|
}
|
|
255
255
|
|
|
256
256
|
// All children in a branch also get the same hooks.
|