Skip to content

Commit b27af30

Browse files
committed
Release v1.0.0-rc.13
1 parent ac5038a commit b27af30

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bob-the-bundler",
3-
"version": "1.0.0-rc.12",
3+
"version": "1.0.0-rc.13",
44
"description": "Bob The Bundler!",
55
"author": {
66
"email": "[email protected]",

src/commands/build.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,12 @@ async function buildSingle() {
7171

7272
validatePackageJson(pkg);
7373

74-
const buildOptions: BuildOptions = pkg.buildOptions;
74+
const buildOptions: BuildOptions = pkg.buildOptions || {};
7575

7676
const extraInputOptions: Partial<rollup.RollupOptions> = {};
7777

7878
if (buildOptions.external) {
79-
extraInputOptions.external = buildOptions.external || {};
79+
extraInputOptions.external = buildOptions.external;
8080
}
8181

8282
const inputOptions = {

0 commit comments

Comments
 (0)