diff --git a/guides/advanced-use/cli-commands-reference.md b/guides/advanced-use/cli-commands-reference.md index 7aec6ea..b33d8d8 100644 --- a/guides/advanced-use/cli-commands-reference.md +++ b/guides/advanced-use/cli-commands-reference.md @@ -83,8 +83,6 @@ ember addon aliases: -b --skip-npm (Boolean) (Default: false) aliases: -sn - --skip-bower (Boolean) (Default: false) - aliases: -sb --skip-git (Boolean) (Default: false) aliases: -sg --yarn (Boolean) @@ -639,8 +637,6 @@ ember init aliases: -b --skip-npm (Boolean) (Default: false) aliases: -sn - --skip-bower (Boolean) (Default: false) - aliases: -sb --welcome (Boolean) (Default: true) Installs and uses {{ember-welcome-page}}. Use --no-welcome to skip it. @@ -683,8 +679,6 @@ ember new aliases: -b --skip-npm (Boolean) (Default: false) aliases: -sn - --skip-bower (Boolean) (Default: false) - aliases: -sb --skip-git (Boolean) (Default: false) aliases: -sg --welcome (Boolean) (Default: true) Installs and diff --git a/guides/advanced-use/debugging.md b/guides/advanced-use/debugging.md index 6be251c..d88929d 100644 --- a/guides/advanced-use/debugging.md +++ b/guides/advanced-use/debugging.md @@ -88,9 +88,6 @@ Some common steps are to stop the server, try one or more of these steps, and st - Run `npm install` or `yarn install` - Delete the `node_modules` directory and run `npm install` or `yarn install` - Delete the `dist` directory (found in apps with versions < 3.4), delete `node_modules`, and `npm install` or `yarn install` -- If an app uses Bower (a deprecated, npm-like tool), follow all the steps above - -in addition to deleting `bower_components` and running `bower install`. [1]: https://nodejs.org/api/debugger.html [2]: https://docs.npmjs.com/cli/link diff --git a/guides/appendix/dev-tools.md b/guides/appendix/dev-tools.md index afb208a..48ab809 100644 --- a/guides/appendix/dev-tools.md +++ b/guides/appendix/dev-tools.md @@ -109,8 +109,6 @@ Mark as `Excluded`: Mark as `Resource Root`: ```shell / -/bower_components -/bower_components/ember-qunit/lib /public ``` diff --git a/guides/basic-use/assets-and-dependencies.md b/guides/basic-use/assets-and-dependencies.md index d30cde8..7ad7e63 100644 --- a/guides/basic-use/assets-and-dependencies.md +++ b/guides/basic-use/assets-and-dependencies.md @@ -16,9 +16,6 @@ The code itself goes in `node_modules` during `npm install`, just like in many n - The `styles` directory, for stylesheets like CSS, SASS, or LESS plus folders like `vendor` and `public` that can hold many other files of the developer's choice -Some older apps may use a package manager and registry called Bower, which has -a `bower_components` directory. Bower itself is deprecated and should not be used. -