-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Warn when an empty template registry will be generated
- Loading branch information
1 parent
fbd0f75
commit e76970c
Showing
9 changed files
with
164 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
/dist/ | ||
/test/output/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
/coverage/ | ||
/dist/ | ||
/test/output/ | ||
/CHANGELOG.md | ||
/pnpm-lock.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,25 @@ | ||
export interface EntriesResult { | ||
components: Entry[]; | ||
helpers: Entry[]; | ||
modifiers: Entry[]; | ||
// eslint-disable-next-line n/no-missing-import | ||
import type { PackageJson } from "type-fest"; | ||
|
||
export type EntriesResult = Record<EntryType, Entry[]>; | ||
|
||
export enum EntryType { | ||
Components = "components", | ||
Helpers = "helpers", | ||
Modifiers = "modifiers", | ||
} | ||
|
||
export interface Entry { | ||
extension: string; | ||
identifier: string; | ||
name: string; | ||
} | ||
|
||
export type EmberPackageJson = PackageJson & { | ||
ember?: { | ||
edition?: string; | ||
}; | ||
"ember-addon"?: { | ||
version?: number; | ||
}; | ||
}; |