Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump got and alex #289

Merged
merged 2 commits into from
Sep 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,5 +70,5 @@ Avoid voice altogether whenever you can. When some voice is needed, use first pe
- Best: “There is an entire ecosystem of adapters that allows Ember apps to talk to different types of servers …”

#### Inclusive language
<!--alex disable her-him obviously -->
<!--alex disable her-him obvious just -->
“They/Them” is used in place of him/he/she/her/etc. Do not use gender in code examples. Avoid terms like “just, simply, obviously” etc.
3 changes: 1 addition & 2 deletions guides/advanced-use/asset-compilation.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,8 @@ module.exports = {

(If these values look familiar, they're the same exact values used by the popular [Autoprefixer](https://github.com/postcss/autoprefixer) project. Autoprefixer has an [online version](https://goonlinetools.com/autoprefixer/) that allows you to enter your non-prefixed CSS and gives you a prefix-added CSS.)

<!-- alex disable simply -->
If you need more fine-grained customization over the way that `babel-preset-env` transforms your code,
simply set any of the [babel-preset-env options](https://babeljs.io/docs/en/babel-preset-env.html#options) on your application's `babel` hash in `ember-cli-build.js`.
set any of the [babel-preset-env options](https://babeljs.io/docs/en/babel-preset-env.html#options) on your application's `babel` hash in `ember-cli-build.js`.

For example, if you wanted to explicitly exclude generator function transpilation from your
output, your configuration would look like this:
Expand Down
4 changes: 2 additions & 2 deletions guides/advanced-use/debugging.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ set a `debugger` at the top of `ember-cli-build.js`, and then run:
```bash
node inspect ./node_modules/.bin/ember build
```
<!-- alex disable simply -->

You'll first see the build command pause at the start of the program. You can tell it to continue
by typing `cont` (or simply `c`). Once the program begins executing, it will stop at any `debugger`
by typing `cont` (or `c`). Once the program begins executing, it will stop at any `debugger`
statements it finds. You can then enter a REPL, by typing `repl`.

In addition to stepping through this code using the Node.js debugger, you can also "attach" other debugging
Expand Down
4 changes: 2 additions & 2 deletions guides/appendix/dev-tools.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,12 @@ to enable it inside those projects.


### Sublime Text
<!-- alex disable simply -->

If you are using [Sublime Text](http://www.sublimetext.com) with Ember CLI,
by default it will try to index all files in your `tmp` directory for its
GoToAnything functionality. This will cause your computer to come to a
screeching halt @ 90%+ CPU usage, and can significantly increase build times.
Simply remove these directories from the folders Sublime Text watches:
Remove these directories from the folders Sublime Text watches:

`Sublime Text -> Preferences -> Settings - User`

Expand Down
Loading
Loading