From f7c8955de48b2c1d5b680d828b849b19a112d1ac Mon Sep 17 00:00:00 2001 From: Bert De Block Date: Thu, 27 Jan 2022 19:21:46 +0100 Subject: [PATCH] Remove refs to Bower --- guides/advanced-use/debugging.md | 3 --- guides/appendix/dev-tools.md | 2 -- guides/basic-use/assets-and-dependencies.md | 3 --- guides/writing-addons/addon-blueprints.md | 7 ------- 4 files changed, 15 deletions(-) diff --git a/guides/advanced-use/debugging.md b/guides/advanced-use/debugging.md index 6be251c8..d88929d4 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 afb208ad..48ab809d 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 d30cde8c..7ad7e63e 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. -