@staff0rd/assist 0.187.0 → 0.188.0
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 +2 -8
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6,7 +6,7 @@ import { Command } from "commander";
|
|
|
6
6
|
// package.json
|
|
7
7
|
var package_default = {
|
|
8
8
|
name: "@staff0rd/assist",
|
|
9
|
-
version: "0.
|
|
9
|
+
version: "0.188.0",
|
|
10
10
|
type: "module",
|
|
11
11
|
main: "dist/index.js",
|
|
12
12
|
bin: {
|
|
@@ -421,13 +421,7 @@ import Database from "better-sqlite3";
|
|
|
421
421
|
// src/commands/backlog/ensureGitignore.ts
|
|
422
422
|
import { existsSync as existsSync2, readFileSync as readFileSync3, writeFileSync as writeFileSync2 } from "fs";
|
|
423
423
|
import { join as join2 } from "path";
|
|
424
|
-
var gitignoreEntries = [
|
|
425
|
-
".assist/backlog.db",
|
|
426
|
-
".assist/backlog.db-shm",
|
|
427
|
-
".assist/backlog.db-wal",
|
|
428
|
-
".assist-signal*.json",
|
|
429
|
-
".assist-lock-*.json"
|
|
430
|
-
];
|
|
424
|
+
var gitignoreEntries = [".assist-*", ".assist/*.db*"];
|
|
431
425
|
function ensureGitignore(dir) {
|
|
432
426
|
const gitignorePath = join2(dir, ".gitignore");
|
|
433
427
|
const existing = existsSync2(gitignorePath) ? readFileSync3(gitignorePath, "utf-8") : "";
|