Skip to content

Commit

Permalink
Merge pull request #2954 from canjs/2938-doc-fixes
Browse files Browse the repository at this point in the history
Add steal-stache plugin configuration instructions to the migration guide
  • Loading branch information
matthewp committed Jan 10, 2017
2 parents 79ffb53 + 0f5bbae commit 72a1463
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
14 changes: 13 additions & 1 deletion docs/can-guides/commitment/migrating_to_3.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,19 @@ If you use StealJS, you’ll need to install [steal-stache] to load your templat
npm install steal-stache --save
```
You don’t need to do anything else to make your templates load correctly.
If you’re using StealJS 0.16, you don’t need to do anything else to make your templates load correctly.
If you’re using StealJS 1, you also need to add `steal-stache` to the `plugins` configuration in your `package.json`:
```json
{
...
"steal": {
...
"plugins": ["steal-stache"]
}
}
```
## Modernized migration path
Expand Down
2 changes: 1 addition & 1 deletion docs/can-guides/contribute/bug-report.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ move the issue to the correct repository if necessary.

When creating an issue, it’s very helpful to include:

- Small examples using tools like JS Bin. You can clone the following [CanJS bin](http://jsbin.com/ziyiqe/2/edit?html,js,output) that includes everything in CanJS. Make
- Small examples using tools like JS Bin. You can clone the following [CanJS bin](http://jsbin.com/losoceranu/1/edit?html,js,output) that includes everything in CanJS. Make
sure it’s pointing at the same version of CanJS you are using.
- Breaking unit tests (optional). See [guides/contributing/code].
- Proposed fix solutions (optional)
Expand Down

0 comments on commit 72a1463

Please sign in to comment.