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
@@ -44,7 +44,7 @@ To setup and develop your PWA extension modules locally, use the following instr
44
44
45
45
- To work with `stable` packages, ensure that the `prefer-stable` property is `true`. This property should already be included in the `composer.json` file, right above the `minimum-stability` setting.
46
46
47
-
- Configure `composer`so that it knows where to find new modules. The following commandwill configure any extension code inside the ext directory to be treated as a package and symlinked to the vendor directory:
47
+
- Configure `composer` to find new extension modules. The following commandconfigures `composer` to treat any extension code inside the `ext` directory as a package and creates a symlink to the `vendor` directory:
@@ -56,15 +56,18 @@ To setup and develop your PWA extension modules locally, use the following instr
56
56
composer require magento/pwa
57
57
```
58
58
59
-
At this point, all the `pwa` modules are symlinked inside the vendor directory, which allows both running a Magento installation with additional modules as well as doing development using the standard git workflow.
59
+
At this point, you should see symlinks forall the `pwa` modules inside the `vendor` directory. These symlinks allow you to:
60
60
61
-
You may need to ensure that there are no Magento_PWA* modules listed as `enabled` when you run `bin/magento module:status`. If they are, [follow the docs on how to enable modules](https://devdocs.magento.com/guides/v2.3/extension-dev-guide/build/enable-module.html).
61
+
- Run a Magento installation with additional modules.
62
+
- Develop locally using the standard git workflow.
63
+
64
+
You may need to ensure that there are no `Magento_PWA*` modules listed as `enabled` when you run `bin/magento module:status`. If there are, [follow the docs on how to enable modules](https://devdocs.magento.com/guides/v2.3/extension-dev-guide/build/enable-module.html).
62
65
63
66
### Setting up the Git workflow
64
67
65
68
To improve the developer experience even further, you can add these configurations as well:
66
69
67
-
1. Exclude all the `ext/` directories in the project's `.git` configuration:
70
+
1. Exclude all the `ext` directories in the project's `.git` configuration:
0 commit comments