@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 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
- ### Note
294
+ ### 13. `sentry`
293
295
 
294
- Each generator accepts the `--help` argument to see generator instructions.
296
+ Creates [Sentry](https://sentry.io/) integration for Expo/Next application.
295
297
 
296
- ```sh
297
- npx nx g react-lib --help
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ronas-it/nx-generators",
3
- "version": "0.11.0",
3
+ "version": "0.11.1",
4
4
  "description": "NX generators for Ronas IT projects",
5
5
  "license": "MIT",
6
6
  "author": "Ronas IT",
@@ -15,5 +15,5 @@
15
15
  "x-prompt": "What is your Sentry DSN?"
16
16
  }
17
17
  },
18
- "required": ["dsn"]
18
+ "required": []
19
19
  }