Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 10172f11b0 | |||
| add4a2d60c | |||
| fec35a2333 |
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "move",
|
"name": "move",
|
||||||
"version": "1.0.0",
|
"version": "1.1.1",
|
||||||
"private": true,
|
"private": true,
|
||||||
"license": "GPL-3.0-only",
|
"license": "GPL-3.0-only",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
|
|||||||
@@ -7,9 +7,9 @@
|
|||||||
|
|
||||||
import { afterEach, beforeEach, describe, expect, test } from "bun:test";
|
import { afterEach, beforeEach, describe, expect, test } from "bun:test";
|
||||||
|
|
||||||
import { DEFAULT_CONFIG, defaultConfigPath, resolveConfig } from "./config.ts";
|
import { DEFAULT_CONFIG, defaultConfigPath, resolveConfig } from "../src/config.ts";
|
||||||
import type { ConfigOverrides } from "./config.ts";
|
import type { ConfigOverrides } from "../src/config.ts";
|
||||||
import { CliError } from "./errors.ts";
|
import { CliError } from "../src/errors.ts";
|
||||||
|
|
||||||
const NONE: ConfigOverrides = {
|
const NONE: ConfigOverrides = {
|
||||||
moveInterval: undefined,
|
moveInterval: undefined,
|
||||||
@@ -10,8 +10,8 @@ import { mkdtempSync, rmSync, writeFileSync } from "node:fs";
|
|||||||
import { tmpdir } from "node:os";
|
import { tmpdir } from "node:os";
|
||||||
import { join } from "node:path";
|
import { join } from "node:path";
|
||||||
|
|
||||||
import { loadConfigFile } from "./configFile.ts";
|
import { loadConfigFile } from "../src/configFile.ts";
|
||||||
import { CliError } from "./errors.ts";
|
import { CliError } from "../src/errors.ts";
|
||||||
|
|
||||||
let TMP: string;
|
let TMP: string;
|
||||||
|
|
||||||
+3
-2
@@ -10,7 +10,8 @@
|
|||||||
"allowImportingTsExtensions": true,
|
"allowImportingTsExtensions": true,
|
||||||
"verbatimModuleSyntax": true,
|
"verbatimModuleSyntax": true,
|
||||||
"resolveJsonModule": true,
|
"resolveJsonModule": true,
|
||||||
"noUncheckedIndexedAccess": true
|
"noUncheckedIndexedAccess": true,
|
||||||
|
"types": ["bun"]
|
||||||
},
|
},
|
||||||
"include": ["src/**/*.ts"]
|
"include": ["src/**/*.ts", "tests/**/*.ts"]
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user