Skip to content

Commit

Permalink
Fix publish import for CLI
Browse files Browse the repository at this point in the history
  • Loading branch information
lachlancollins committed Dec 31, 2023
1 parent e4610dd commit 0b8eb0f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import interpret from 'interpret'
const argv = minimist(args)
import { pathToFileURL } from 'node:url'
import { createRequire } from 'node:module'
import { publish } from '../src/publish.js'
import { publish } from '../src/publish/index.js'
import { Command, Option } from 'commander'
import fs from 'node:fs'
import { dirname, join } from 'node:path'
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@
"baseUrl": ".",
"allowUnreachableCode": true
},
"include": ["prettier.config.js", "src"]
"include": ["bin", "prettier.config.js", "src"]
}

0 comments on commit 0b8eb0f

Please sign in to comment.