Skip to content

Commit

Permalink
fixed many errors i caused
Browse files Browse the repository at this point in the history
  • Loading branch information
elliotberry committed Aug 12, 2024
1 parent 266b8e4 commit b68457f
Show file tree
Hide file tree
Showing 5 changed files with 476 additions and 181 deletions.
2 changes: 1 addition & 1 deletion config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import ConfigurationStation from "/Users/eberry/projects/configuration-station/index.js"
import ConfigurationStation from "configuration-station";
const config = new ConfigurationStation({
appName: "dscimg",
config: {
Expand Down
6 changes: 3 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import chalk from "chalk"
import exists from "elliotisms/lib/exists.js"
import returnSafeFilePath from "elliotisms/lib/return-safe-filePath.js"
import truncateFilename from "elliotisms/lib/truncate-filename.js"
import exists from "elliotisms/exists"
import returnSafeFilePath from "elliotisms/return-safe-filepath"
import truncateFilename from "elliotisms/truncate-filename"
import fs from "node:fs/promises"
import path from "node:path"
import yargs from "yargs"
Expand Down
2 changes: 1 addition & 1 deletion lib/ask.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import slugify from "elliotisms/lib/slugify.js"
import slugify from "elliotisms/slugify"
import { performance } from "node:perf_hooks"

import config from "../config.js"
Expand Down
Loading

0 comments on commit b68457f

Please sign in to comment.