Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: ✨ add cwd option #47

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 22 additions & 14 deletions src/esbuild.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import cache from "./cache"
export type TranspileOptions = {
type: "bundle" | "transform"
debug: boolean
cwd?: string
esbuild?: CommonOptions & TransformOptions & BuildOptions
}
const defaultOptions: TranspileOptions = { type: "bundle", debug: false }
Expand All @@ -26,18 +27,6 @@ const commonOptions: CommonOptions = {
sourcemap: "inline",
}

const pkgPath = path.resolve(".", "package.json")
let externals: string[] = []
if (fs.existsSync(pkgPath)) {
const pkg = JSON.parse(
fs.readFileSync(pkgPath, { encoding: "utf-8" })
) as PackageJson
externals = [
...Object.keys(pkg.dependencies ?? {}),
...Object.keys(pkg.devDependencies ?? {}),
]
}

export const loaders: Record<string, Loader> = {
".js": "js",
".mjs": "js",
Expand Down Expand Up @@ -101,7 +90,6 @@ function _bundle(
resolveDir: path.dirname(filename),
loader: loaders[ext],
},
external: [...externals, ...(options?.esbuild?.external ?? [])],
write: false,
})
.outputFiles.map((f) => f.text)
Expand All @@ -113,7 +101,27 @@ export function transpile(
filename: string,
_options?: Partial<TranspileOptions>
): string {
const options: TranspileOptions = { ...defaultOptions, ..._options }
const pkgPath = path.resolve(_options?.cwd ?? ".", "package.json")
let externals: string[] = []
if (fs.existsSync(pkgPath)) {
const pkg = JSON.parse(
fs.readFileSync(pkgPath, { encoding: "utf-8" })
) as PackageJson
externals = [
...Object.keys(pkg.dependencies ?? {}),
...Object.keys(pkg.devDependencies ?? {}),
]
} else if (_options?.cwd) {
throw new Error(`No package.json found in ${_options?.cwd}`)
}
const options: TranspileOptions = {
...defaultOptions,
..._options,
esbuild: {
..._options?.esbuild,
external: [...externals, ...(_options?.esbuild?.external ?? [])],
},
}
if (options.type == "bundle") {
// eslint-disable-next-line no-console
if (options.debug) console.log(`📦 ${filename}`)
Expand Down