Skip to content

Commit

Permalink
Fix the command for installing all of can-core
Browse files Browse the repository at this point in the history
We weren’t including `can-stache-bindings` in the list of modules to install to get all of can-core.

Related to http://forums.donejs.com/t/clicking-element-doesnt-fire-click-event/509
  • Loading branch information
chasenlehara committed Dec 15, 2016
1 parent cf1cce2 commit 20b36a8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/can-canjs/can-core.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Each module is part of an independent package, so you
should install the ones you use directly:

```
npm install can-define can-set can-connect can-component can-stache can-route --save
npm install can-component can-compute can-connect can-define can-route can-route-pushstate can-set can-stache can-stache-bindings --save
```


Expand Down
6 changes: 3 additions & 3 deletions docs/can-guides/experiment/setting-up-canjs.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ It uses `can.all.js` so you have the [can-core core], [can-ecosystem ecosystem],
Install [can-core CanJS’s core modules] and StealJS with npm:

```
npm install can-component can-compute can-connect can-define can-route can-route-pushstate can-set can-stache --save
npm install can-component can-compute can-connect can-define can-route can-route-pushstate can-set can-stache can-stache-bindings --save
npm install steal steal-stache --save
```

Expand Down Expand Up @@ -102,7 +102,7 @@ guide has instructions for how to create a production build.
Install [can-core CanJS’s core modules] and Webpack (with `raw-loader`) with npm:

```
npm install can-component can-compute can-connect can-define can-route can-route-pushstate can-set can-stache --save
npm install can-component can-compute can-connect can-define can-route can-route-pushstate can-set can-stache can-stache-bindings --save
npm install webpack raw-loader --save-dev
```

Expand Down Expand Up @@ -147,7 +147,7 @@ Finally, create a page that loads `bundle.js`:
CanJS works with Browserify. Install [can-core CanJS’s core modules] and Browserify (with `stringify`) with npm:

```
npm install can-component can-compute can-connect can-define can-route can-route-pushstate can-set can-stache --save
npm install can-component can-compute can-connect can-define can-route can-route-pushstate can-set can-stache can-stache-bindings --save
npm install browserify stringify --save-dev
```

Expand Down

0 comments on commit 20b36a8

Please sign in to comment.