@ronas-it/nx-generators 0.11.0 → 0.11.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -5
- package/package.json +1 -1
- package/src/generators/sentry/schema.json +1 -1
package/README.md
CHANGED
|
@@ -58,6 +58,8 @@ npx nx g react-component
|
|
|
58
58
|
|
|
59
59
|
## Generators overview
|
|
60
60
|
|
|
61
|
+
Note: each generator accepts the `--help` argument to see generator instructions. Example: `npx nx g react-lib --help`.
|
|
62
|
+
|
|
61
63
|
### Repository
|
|
62
64
|
|
|
63
65
|
### 1. `repo-config`
|
|
@@ -289,10 +291,12 @@ Creates an API with related entities in API library. It also updates redux store
|
|
|
289
291
|
npx nx g entity-api --name=User --baseEndpoint=users
|
|
290
292
|
```
|
|
291
293
|
|
|
292
|
-
###
|
|
294
|
+
### 13. `sentry`
|
|
293
295
|
|
|
294
|
-
|
|
296
|
+
Creates [Sentry](https://sentry.io/) integration for Expo/Next application.
|
|
295
297
|
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
298
|
+
#### Options
|
|
299
|
+
|
|
300
|
+
1. `directory` (optional) - the application directory that uses Sentry
|
|
301
|
+
|
|
302
|
+
2. `dsn` (optional) - [Data Source Name](https://docs.sentry.io/concepts/key-terms/dsn-explainer/) of your Sentry project
|
package/package.json
CHANGED