@paulp-o/opencode-auq 1.2.9 → 1.3.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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -79,7 +79,7 @@ const runAuqAsk = async (payload) => new Promise((resolve, reject) => {
79
79
  stderr += chunk;
80
80
  });
81
81
  child.on("error", (error) => {
82
- reject(new Error(`Failed to run \"auq ask\": ${error.message}. Is the auq CLI installed globally?`));
82
+ reject(new Error(`Failed to run "auq ask": ${error.message}. Is the auq CLI installed globally?`));
83
83
  });
84
84
  child.on("close", (code) => {
85
85
  if (code === 0) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@paulp-o/opencode-auq",
4
- "version": "1.2.9",
4
+ "version": "1.3.1",
5
5
  "description": "OpenCode plugin that forwards ask_user_questions to the auq CLI",
6
6
  "type": "module",
7
7
  "main": "dist/index.js",