@jjrawlins/cfn-drift-remediate 0.0.5 → 0.0.6
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 +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -100,10 +100,10 @@ The tool supports ~100 CloudFormation resource types that are eligible for impor
|
|
|
100
100
|
## Development
|
|
101
101
|
|
|
102
102
|
```bash
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
103
|
+
npx projen build # Full pipeline: projen synth → compile → test → package
|
|
104
|
+
npx projen compile # TypeScript compile only
|
|
105
|
+
npx projen test # Run Jest unit tests + ESLint
|
|
106
|
+
npx projen watch # Watch mode
|
|
107
107
|
```
|
|
108
108
|
|
|
109
109
|
This project uses [projen](https://projen.io/). Edit `.projenrc.ts` and run `npx projen` to regenerate config files.
|