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
npm run nx generate @nx-aws-plugin/nx-aws-cache:init
23
23
```
24
24
25
+
This will make the necessary changes to nx.json in your workspace to use nx-aws-cache runner.
26
+
25
27
## Setup Infrastructure and Secrets automatically
26
28
27
29
Read the [README.md of @nx-aws-plugin/nx-aws-cache-iac](https://github.com/bojanbass/nx-aws/blob/master/apps/nx-aws-cache-iac/README.md)
@@ -104,19 +106,19 @@ AWS SDK v3 is used under the hood with a support for [SSO login](https://docs.aw
104
106
105
107
## Build
106
108
107
-
Run `yarn run build` to build the plugin. The build artifacts will be stored in the `dist/` directory. Use the `--prod` flag for a production build.
109
+
Run `yarn nx build nx-aws-cache` to build the plugin. The build artifacts will be stored in the `dist/` directory. Use the `--prod` flag for a production build.
108
110
109
111
## Running unit/integration tests
110
112
111
-
Run `yarn run test` to execute the unit tests via [Jest](https://jestjs.io).
113
+
Run `yarn nx test nx-aws-cache` to execute the unit tests via [Jest](https://jestjs.io).
112
114
113
-
Run `yarn run affected:test` to execute the unit tests affected by a change.
115
+
Run `yarn nx affected:test` to execute the unit tests affected by a change.
114
116
115
117
## Running end-to-end tests
116
118
117
-
Run `yarn run e2e` to execute the end-to-end tests via [Jest](https://jestjs.io).
119
+
Run `yarn nx e2e nx-aws-cache-e2e` to execute the end-to-end tests via [Jest](https://jestjs.io).
118
120
119
-
Run `yarn run affected:e2e` to execute the end-to-end tests affected by a change.
121
+
Run `yarn nx affected:e2e` to execute the end-to-end tests affected by a change.
0 commit comments