@wrongstack/plugins 0.9.0 → 0.9.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.
- package/dist/index.js +3 -3
- package/dist/shell-check.js +2 -2
- package/dist/web-search.js +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -659,7 +659,7 @@ var plugin3 = {
|
|
|
659
659
|
required: ["files"]
|
|
660
660
|
},
|
|
661
661
|
permission: "auto",
|
|
662
|
-
mutating:
|
|
662
|
+
mutating: true,
|
|
663
663
|
async execute(input) {
|
|
664
664
|
const files = input["files"];
|
|
665
665
|
const severity = input["severity"] ?? "warning";
|
|
@@ -723,7 +723,7 @@ var plugin3 = {
|
|
|
723
723
|
}
|
|
724
724
|
},
|
|
725
725
|
permission: "auto",
|
|
726
|
-
mutating:
|
|
726
|
+
mutating: true,
|
|
727
727
|
async execute(input) {
|
|
728
728
|
const dir = input["directory"] ?? ".";
|
|
729
729
|
const pattern = input["pattern"] ?? "";
|
|
@@ -1385,7 +1385,7 @@ var plugin6 = {
|
|
|
1385
1385
|
required: ["query"]
|
|
1386
1386
|
},
|
|
1387
1387
|
permission: "auto",
|
|
1388
|
-
mutating:
|
|
1388
|
+
mutating: true,
|
|
1389
1389
|
async execute(input) {
|
|
1390
1390
|
const query = input["query"];
|
|
1391
1391
|
if (!query || typeof query !== "string" || query.trim() === "") {
|
package/dist/shell-check.js
CHANGED
|
@@ -122,7 +122,7 @@ var plugin = {
|
|
|
122
122
|
required: ["files"]
|
|
123
123
|
},
|
|
124
124
|
permission: "auto",
|
|
125
|
-
mutating:
|
|
125
|
+
mutating: true,
|
|
126
126
|
async execute(input) {
|
|
127
127
|
const files = input["files"];
|
|
128
128
|
const severity = input["severity"] ?? "warning";
|
|
@@ -186,7 +186,7 @@ var plugin = {
|
|
|
186
186
|
}
|
|
187
187
|
},
|
|
188
188
|
permission: "auto",
|
|
189
|
-
mutating:
|
|
189
|
+
mutating: true,
|
|
190
190
|
async execute(input) {
|
|
191
191
|
const dir = input["directory"] ?? ".";
|
|
192
192
|
const pattern = input["pattern"] ?? "";
|
package/dist/web-search.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wrongstack/plugins",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.1",
|
|
4
4
|
"description": "Official WrongStack plugin collection — auto-doc, git-autocommit, shell-check, cost-tracker, file-watcher, web-search, json-path, cron, template-engine, semver-bump",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "ECOSTACK TECHNOLOGY OÜ",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"vitest": "^3.0.0"
|
|
64
64
|
},
|
|
65
65
|
"dependencies": {
|
|
66
|
-
"@wrongstack/core": "0.9.
|
|
66
|
+
"@wrongstack/core": "0.9.1"
|
|
67
67
|
},
|
|
68
68
|
"scripts": {
|
|
69
69
|
"build": "tsup",
|