Skip to content

Commit

Permalink
fix: use grouped indexer config for actions
Browse files Browse the repository at this point in the history
  • Loading branch information
snickbit committed Apr 28, 2022
1 parent 461929d commit 2e08c6a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion indexer.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"index": "src/actions/index.js",
"files": [
{
"export": "individual",
"export": "group",
"dir": "src/actions"
}
]
Expand Down
6 changes: 3 additions & 3 deletions src/actions/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// WARNING: This file is automatically generated. Any changes will be lost the next time the generator is run.

export * from './add'
export * from './generate'
export * from './remove'
export * as add from './add'
export * as generate from './generate'
export * as remove from './remove'

0 comments on commit 2e08c6a

Please sign in to comment.