scanoss 0.33.0 → 0.35.0
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/CHANGELOG.md +16 -2
- package/build/main/cli/bin/cli-bin.js +6 -1
- package/build/main/cli/commands/helpers.js +5 -2
- package/build/main/cli/commands/scan.js +25 -4
- package/build/main/index.d.ts +1 -0
- package/build/main/index.js +2 -1
- package/build/main/sdk/Decompress/Decompressor/DecompressZips.js +3 -2
- package/build/main/sdk/Dependencies/LocalDependency/LocalDependency.js +4 -1
- package/build/main/sdk/Dependencies/LocalDependency/parsers/parser.spec.js +54 -1
- package/build/main/sdk/Dependencies/LocalDependency/parsers/pnpmParser.d.ts +2 -0
- package/build/main/sdk/Dependencies/LocalDependency/parsers/pnpmParser.js +257 -0
- package/build/main/sdk/Dependencies/LocalDependency/parsers/pyParser.d.ts +1 -0
- package/build/main/sdk/Dependencies/LocalDependency/parsers/pyParser.js +26 -9
- package/build/main/sdk/scanner/Dispatcher/DispatchableItem.d.ts +4 -0
- package/build/main/sdk/scanner/Dispatcher/DispatchableItem.js +7 -1
- package/build/main/sdk/scanner/Dispatcher/Dispatcher.d.ts +1 -0
- package/build/main/sdk/scanner/Dispatcher/Dispatcher.js +20 -8
- package/build/main/sdk/scanner/ScanSettingsBuilder.d.ts +13 -0
- package/build/main/sdk/scanner/ScanSettingsBuilder.js +95 -0
- package/build/main/sdk/scanner/ScanSettingsBuilder.spec.d.ts +1 -0
- package/build/main/sdk/scanner/ScanSettingsBuilder.spec.js +238 -0
- package/build/main/sdk/scanner/Scanner.js +4 -2
- package/build/main/sdk/scanner/ScannnerResultPostProcessor/interfaces/types.d.ts +13 -1
- package/build/main/tsconfig.tsbuildinfo +1 -1
- package/build/module/cli/bin/cli-bin.js +6 -1
- package/build/module/cli/commands/helpers.js +5 -2
- package/build/module/cli/commands/scan.js +24 -4
- package/build/module/index.d.ts +1 -0
- package/build/module/index.js +2 -1
- package/build/module/sdk/Decompress/Decompressor/DecompressZips.js +3 -2
- package/build/module/sdk/Dependencies/LocalDependency/LocalDependency.js +5 -2
- package/build/module/sdk/Dependencies/LocalDependency/parsers/parser.spec.js +54 -1
- package/build/module/sdk/Dependencies/LocalDependency/parsers/pnpmParser.d.ts +2 -0
- package/build/module/sdk/Dependencies/LocalDependency/parsers/pnpmParser.js +251 -0
- package/build/module/sdk/Dependencies/LocalDependency/parsers/pyParser.d.ts +1 -0
- package/build/module/sdk/Dependencies/LocalDependency/parsers/pyParser.js +25 -9
- package/build/module/sdk/scanner/Dispatcher/DispatchableItem.d.ts +4 -0
- package/build/module/sdk/scanner/Dispatcher/DispatchableItem.js +8 -1
- package/build/module/sdk/scanner/Dispatcher/Dispatcher.d.ts +1 -0
- package/build/module/sdk/scanner/Dispatcher/Dispatcher.js +20 -8
- package/build/module/sdk/scanner/ScanSettingsBuilder.d.ts +13 -0
- package/build/module/sdk/scanner/ScanSettingsBuilder.js +86 -0
- package/build/module/sdk/scanner/ScanSettingsBuilder.spec.d.ts +1 -0
- package/build/module/sdk/scanner/ScanSettingsBuilder.spec.js +236 -0
- package/build/module/sdk/scanner/Scanner.js +4 -2
- package/build/module/sdk/scanner/ScannnerResultPostProcessor/interfaces/types.d.ts +13 -1
- package/build/module/tsconfig.module.tsbuildinfo +1 -1
- package/package.json +1 -1
package/package.json
CHANGED