Skip to content

Commit b1a7cd1

Browse files
authored
Merge pull request #235 from danwenzel/patch-1
Add info on how to disable the built-in deployment plugins
2 parents dfae688 + 5897894 commit b1a7cd1

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

tests/dummy/app/pods/docs/deploying/template.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,3 +168,17 @@ Next, remove the item from `versions.json` for the version you want to get rid o
168168
```
169169

170170
Keep in mind, your deployed site is still a git branch like everything else in your repo, so you have all the same tools at your disposal for making changes to it. In many case, rather than going through the manual steps outlined above, you may be able to just find the commit that added the version you want to remove and `git revert` it.
171+
172+
## Disabling the default deployment plugins
173+
174+
If you wish to disable ember-cli-addon-docs' built-in deployment plugins altogether and instead define your own pipeline, you can do so by [editing your pipeline configuration](http://ember-cli-deploy.com/docs/v1.0.x/configuration/#disabling-plugins). In your `config/deploy.js` file:
175+
176+
```js
177+
// ...
178+
ENV.pipeline = {
179+
disabled: {
180+
'addon-docs': true
181+
}
182+
};
183+
// ...
184+
```

0 commit comments

Comments
 (0)