Skip to content

Commit

Permalink
Fixed mistake in parameters' typing.
Browse files Browse the repository at this point in the history
  • Loading branch information
NDASoftware committed Oct 23, 2023
1 parent 04f0c70 commit 997844b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rollup-plugin-indexer",
"version": "2.1.2",
"version": "2.1.3",
"description": "Package to automate indexing before bundling of files in rollup.",
"repository": "git@github.com:NDA-Software/rollup-plugin-indexer.git",
"author": "Herr Turing <admin@nda.software>",
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { indexer, type indexerOptions } from 'ts-cornucopia/scripts';

import { type Plugin } from 'rollup';

export default function (path: string | [string], options: indexerOptions = {}): Plugin {
export default function (path: string | string[], options: indexerOptions = {}): Plugin {
return {
name: 'indexer',
version: '1.0.0',
Expand Down

0 comments on commit 997844b

Please sign in to comment.