You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,3 +35,17 @@ Does the following:
35
35
- ember-cli brings in a ton of old dependencies, so removing it makes installs much faster
36
36
- downside though is that you no longer have scaffolding (`ember g`) -- however, you could use `pnpm dlx ember-cli g ...` (or `npx ember-cli g`)
37
37
38
+
### `--minimal`
39
+
40
+
```
41
+
pnpm dlx ember-cli@latest new my-app-name \
42
+
--blueprint @ember/app-blueprint@alpha \
43
+
--pnpm \
44
+
--minimal
45
+
```
46
+
47
+
Does the following
48
+
- everything listed under `--no-compat`
49
+
- Removes all linting, formatting, and testing support
50
+
- leaves you with a minimal app that you can use for demos, and PRing to other repositories that have multi-framework support (and probably use other testing tools for that multi-framework support)
0 commit comments