Skip to content

Commit f7c8955

Browse files
committed
Remove refs to Bower
1 parent 7d6fa24 commit f7c8955

File tree

4 files changed

+0
-15
lines changed

4 files changed

+0
-15
lines changed

guides/advanced-use/debugging.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,6 @@ Some common steps are to stop the server, try one or more of these steps, and st
8888
- Run `npm install` or `yarn install`
8989
- Delete the `node_modules` directory and run `npm install` or `yarn install`
9090
- Delete the `dist` directory (found in apps with versions < 3.4), delete `node_modules`, and `npm install` or `yarn install`
91-
- If an app uses Bower (a deprecated, npm-like tool), follow all the steps above
92-
93-
in addition to deleting `bower_components` and running `bower install`.
9491

9592
[1]: https://nodejs.org/api/debugger.html
9693
[2]: https://docs.npmjs.com/cli/link

guides/appendix/dev-tools.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,6 @@ Mark as `Excluded`:
109109
Mark as `Resource Root`:
110110
```shell
111111
/
112-
/bower_components
113-
/bower_components/ember-qunit/lib
114112
/public
115113
```
116114

guides/basic-use/assets-and-dependencies.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@ The code itself goes in `node_modules` during `npm install`, just like in many n
1616
- The `styles` directory, for stylesheets like CSS, SASS, or LESS
1717
plus folders like `vendor` and `public` that can hold many other files of the developer's choice
1818

19-
Some older apps may use a package manager and registry called Bower, which has
20-
a `bower_components` directory. Bower itself is deprecated and should not be used.
21-
2219
<!--
2320
If addons are installed accidentally with `npm install` or `yarn install`,
2421
the blueprints can be run with .... what?

guides/writing-addons/addon-blueprints.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ module.exports = {
1616
In addition to the standard blueprint hooks, the default blueprint can use these hooks.
1717

1818
* `addAddonToProject`
19-
* `addBowerPackageToProject`
2019
* `addPackageToProject`
2120

2221
#### addAddonToProject
@@ -27,12 +26,6 @@ Installs another Ember addon in the client application
2726

2827
Installs an npm package or dependency into the client application
2928

30-
#### addBowerPackageToProject
31-
32-
Installs a Bower package or dependency into the client application.
33-
Bower is a package manager that is [no longer recommended for new projects](https://bower.io/),
34-
but you may find this hook used in older addons.
35-
3629
Each of the hooks returns a promise, so they can all be chained with `.then()`. The following is an example of each of these:
3730

3831
```javascript {data-filename=my-addon-name/blueprints/my-addon-name/index.js}

0 commit comments

Comments
 (0)