Skip to content

Commit 0f35016

Browse files
Add ember data dependency to the quickstart (#1616)
* Add ember-data dependency to the quickstart * Add ember-data to the blueprint
1 parent de44098 commit 0f35016

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

blueprints/ember-cli-addon-docs/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ module.exports = {
1919
'ember-cli-deploy-build',
2020
'ember-cli-deploy-git',
2121
'ember-cli-deploy-git-ci',
22+
'ember-data',
2223
],
2324
});
2425
},

tests/dummy/app/templates/docs/quickstart.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,16 @@
22

33
## 1. Install AddonDocs
44

5-
```
5+
```sh
66
ember install ember-cli-addon-docs
77
```
88

9+
[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.
10+
11+
```sh
12+
ember install ember-data
13+
```
14+
915
## 2. Install ember-cli-addon-docs-yuidoc
1016

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

0 commit comments

Comments
 (0)