Skip to content

Commit

Permalink
Fix glob import (#18)
Browse files Browse the repository at this point in the history
### Changes:
  - Description of the change
  - Updated package.json version

**Ticket:** https://soos.atlassian.net/browse/PA-0000

<!---
pre release: 
set package.json version eg "version": "0.1.3-pre.1"
npm run build
npm publish --tag next

If you want to create a release make sure to bump the version on
package.json, once it's merged just push a tag with the version
eg if package version is 1.0.0 push a tag with the version v1.0.0 (make
sure to use the v as a prefix).
 This will be enough to release a new version
-->
  • Loading branch information
SOOS-JAlvarez authored Dec 13, 2023
1 parent a87b2b1 commit 3dd76e9
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 25 deletions.
67 changes: 44 additions & 23 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@soos-io/api-client",
"version": "0.2.11",
"version": "0.2.12",
"description": "This is the SOOS API Client for registered clients leveraging the various integrations to the SOOS platform.",
"main": "dist/index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/services/AnalysisService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ import {
SeverityEnum,
} from "../enums";
import { soosLogger } from "../logging";
import Glob from "glob";
import { formatBytes, getVulnerabilitiesByScanType, isNil, sleep } from "../utilities";
import * as FileSystem from "fs";
import * as Path from "path";
import FormData from "form-data";
import * as Glob from "glob";

interface IGenerateFormattedOutputParams {
clientId: string;
Expand Down

0 comments on commit 3dd76e9

Please sign in to comment.