Skip to content

Commit

Permalink
Merge pull request #106 from universal-ember/allow-packages-to-be-uns…
Browse files Browse the repository at this point in the history
…pecified

Allow packages to be unspecified
  • Loading branch information
NullVoxPopuli committed Jul 20, 2024
2 parents ed148eb + b6e4e07 commit 76a9bc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/combined.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { setup } from './setup.js';
export function combinedPlugins(options) {
return [
setup(),
apiDocs({ packages: options.packages, dest: options.dest }),
apiDocs({ packages: options.packages ?? [], dest: options.dest }),
markdownPages({ src: options.src, groups: options.groups, dest: options.dest }),
];
}
Expand Down

0 comments on commit 76a9bc0

Please sign in to comment.