mobbdev 0.0.38 → 0.0.46
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 +18 -0
- package/dist/index.mjs +551 -201
- package/package.json +7 -2
- package/src/post_install/binary.mjs +42 -0
- package/src/post_install/constants.mjs +2 -0
- package/src/post_install/cx_install.mjs +67 -0
package/README.md
CHANGED
|
@@ -40,6 +40,24 @@ npx mobbdev scan -r https://github.com/mobb-dev/simple-vulnerable-java-project
|
|
|
40
40
|
|
|
41
41
|
Bugsy will automatically generate a fix for each supported vulnerability identified in the SAST results, present it to developers for review and commit to their code.
|
|
42
42
|
|
|
43
|
+
## Contribution
|
|
44
|
+
|
|
45
|
+
Install the dependencies and run the tests:
|
|
46
|
+
|
|
47
|
+
```shell
|
|
48
|
+
pnpm install
|
|
49
|
+
|
|
50
|
+
# or use npm run build:dev to watch for changes
|
|
51
|
+
pnpm run build
|
|
52
|
+
|
|
53
|
+
# or use npm test:watch to watch for changes
|
|
54
|
+
pnpm run test
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
### Debugging
|
|
58
|
+
|
|
59
|
+
If you're using VSCode, you can use the `launch.json` file to debug the code. Run the `CLI tests` configuration to continuously run and debug the tests.
|
|
60
|
+
|
|
43
61
|
## Getting support
|
|
44
62
|
|
|
45
63
|
If you need support using Bugsy or just want to share your thoughts and learn more, you are more than welcome to join our [discord server](https://bit.ly/Mobb-discord)
|