A modular Deno library for PostgreSQL, MySQL, MariaDB and SQLite migrations
### Operating System Win10 ### Deno version 1.13.2 ### Nessie version 2.0.1 ### Bug description ``` TypeError: Relative import path "nessie" not prefixed with / or ./ or ../ from "file:///C:/Users/user/workspace/nessie.config.ts" ``` nessie.config.ts ```ts import { ClientSQLite, NessieConfig, } from "nessie"; const client = new ClientSQLite("./src/sqlite.db"); /** This is the final config object */ const config: NessieConfig = { client, migrationFolders: ["./db/migrations"], seedFolders: ["./db/seeds"], }; export default config; ``` ### Steps to reproduce Fresh Deno project using import-maps - import_map.json ```json { "imports": { "fmt/": "https://deno.land/[email protected]/fmt/", "http/": "https://deno.land/[email protected]/http/", "nessie": "https://deno.land/x/[email protected]/mod.ts", "sqlite": "https://deno.land/x/[email protected]/mod.ts" } } ``` Install nessie CLI utility. ``` deno install -A --unstable -n nessie --no-check https://deno.land/x/nessie/cli.ts ``` Attempt to generate migration: ``` nessie make:migration name ``` ### Aditional information _No response_
This issue appears to be discussing a feature request or bug report related to the repository. Based on the content, it seems to be resolved. The issue was opened by Druue and has received 3 comments.