Skip to content

Commit

Permalink
Add ember data dependency to the quickstart (#1616)
Browse files Browse the repository at this point in the history
* Add ember-data dependency to the quickstart

* Add ember-data to the blueprint
  • Loading branch information
barryofguilder authored Dec 6, 2024
1 parent de44098 commit 0f35016
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions blueprints/ember-cli-addon-docs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ module.exports = {
'ember-cli-deploy-build',
'ember-cli-deploy-git',
'ember-cli-deploy-git-ci',
'ember-data',
],
});
},
Expand Down
8 changes: 7 additions & 1 deletion tests/dummy/app/templates/docs/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,16 @@

## 1. Install AddonDocs

```
```sh
ember install ember-cli-addon-docs
```

[Ember Data](https://github.com/emberjs/data) is a required peer dependency, so if you're not already using it in your addon, you'll need to install it.

```sh
ember install ember-data
```

## 2. Install ember-cli-addon-docs-yuidoc

API docs are autogenerated from comments in your source code, and require an additional plugin to be installed.
Expand Down

0 comments on commit 0f35016

Please sign in to comment.