@gutenye/script.js 2.5.0 → 2.6.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/package.json +1 -1
- package/src/ake/completions/ake.fish +3 -0
- package/src/completion.ts +1 -0
- package/src/frequent-used-helpers.ts +0 -0
- package/src/index.ts +1 -0
- package/src/parseArgv.ts +1 -1
package/package.json
CHANGED
package/src/completion.ts
CHANGED
|
@@ -146,6 +146,7 @@ export async function installCompletion(
|
|
|
146
146
|
|
|
147
147
|
fsSync.mkdirSync(specsDir, { recursive: true })
|
|
148
148
|
fsSync.writeFileSync(filePath, result.text)
|
|
149
|
+
console.log(`Updated completion spec: ${filePath}`)
|
|
149
150
|
} catch {
|
|
150
151
|
// completion is supplementary — silently ignore errors
|
|
151
152
|
}
|
|
File without changes
|
package/src/index.ts
CHANGED