Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ let prettierCliPath: string | null | undefined;
* File types that can be formatted using Prettier.
*/
const fileTypes: ReadonlySet<string> = new Set([
'.md',
'.ts',
'.html',
'.js',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ This command will compile your project, and the build artifacts will be placed i
Once the project is built, you can publish your library by following these steps:

1. Navigate to the `dist` directory:

```bash
cd dist/<%= dasherize(name) %>
```
Expand Down
Loading