Skip to content

Commit e7160cd

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

File tree

5 files changed

+0
-21
lines changed

5 files changed

+0
-21
lines changed

guides/advanced-use/cli-commands-reference.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,6 @@ ember addon <addon-name> <options...>
8383
aliases: -b <value>
8484
--skip-npm (Boolean) (Default: false)
8585
aliases: -sn
86-
--skip-bower (Boolean) (Default: false)
87-
aliases: -sb
8886
--skip-git (Boolean) (Default: false)
8987
aliases: -sg
9088
--yarn (Boolean)
@@ -639,8 +637,6 @@ ember init <glob-pattern> <options...>
639637
aliases: -b <value>
640638
--skip-npm (Boolean) (Default: false)
641639
aliases: -sn
642-
--skip-bower (Boolean) (Default: false)
643-
aliases: -sb
644640
--welcome (Boolean) (Default: true) Installs and
645641
uses {{ember-welcome-page}}. Use --no-welcome to
646642
skip it.
@@ -683,8 +679,6 @@ ember new <app-name> <options...>
683679
aliases: -b <value>
684680
--skip-npm (Boolean) (Default: false)
685681
aliases: -sn
686-
--skip-bower (Boolean) (Default: false)
687-
aliases: -sb
688682
--skip-git (Boolean) (Default: false)
689683
aliases: -sg
690684
--welcome (Boolean) (Default: true) Installs and

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)