// Option.ts
// definition
export class None {
readonly tag: 'None' = 'None'
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // MIT licensed (© 2024) | |
| // https://opensource.org/license/mit | |
| // | |
| // Source: https://gist.github.com/gburtini/7e34842c567dd80ee834de74e7b79edd | |
| import fs from "fs"; | |
| import config from "../../drizzle.config"; | |
| import path from "path"; | |
| import { exec, execSync } from "child_process"; |