@trustify-da/trustify-da-javascript-client 0.3.0-ea.cdf078c → 0.3.0-ea.d2fee6b

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.
Files changed (36) hide show
  1. package/dist/src/cyclone_dx_sbom.d.ts +7 -1
  2. package/dist/src/cyclone_dx_sbom.js +18 -5
  3. package/dist/src/index.d.ts +60 -2
  4. package/dist/src/index.js +60 -3
  5. package/dist/src/provider.js +2 -0
  6. package/dist/src/providers/base_java.d.ts +0 -9
  7. package/dist/src/providers/base_java.js +2 -38
  8. package/dist/src/providers/base_pyproject.d.ts +9 -26
  9. package/dist/src/providers/base_pyproject.js +50 -73
  10. package/dist/src/providers/golang_gomodules.d.ts +9 -0
  11. package/dist/src/providers/golang_gomodules.js +49 -0
  12. package/dist/src/providers/java_gradle.d.ts +19 -0
  13. package/dist/src/providers/java_gradle.js +114 -0
  14. package/dist/src/providers/java_maven.d.ts +8 -0
  15. package/dist/src/providers/java_maven.js +93 -1
  16. package/dist/src/providers/javascript_npm.d.ts +1 -0
  17. package/dist/src/providers/javascript_npm.js +21 -0
  18. package/dist/src/providers/javascript_pnpm.js +6 -2
  19. package/dist/src/providers/marker_evaluator.d.ts +14 -0
  20. package/dist/src/providers/marker_evaluator.js +191 -0
  21. package/dist/src/providers/processors/yarn_berry_processor.js +6 -2
  22. package/dist/src/providers/python_controller.d.ts +5 -1
  23. package/dist/src/providers/python_controller.js +8 -4
  24. package/dist/src/providers/python_pip.d.ts +4 -0
  25. package/dist/src/providers/python_pip.js +4 -4
  26. package/dist/src/providers/python_pip_pyproject.d.ts +61 -0
  27. package/dist/src/providers/python_pip_pyproject.js +144 -0
  28. package/dist/src/providers/python_poetry.d.ts +37 -4
  29. package/dist/src/providers/python_poetry.js +82 -13
  30. package/dist/src/providers/python_uv.d.ts +15 -0
  31. package/dist/src/providers/python_uv.js +15 -1
  32. package/dist/src/sbom.d.ts +7 -1
  33. package/dist/src/sbom.js +4 -2
  34. package/dist/src/tools.d.ts +26 -0
  35. package/dist/src/tools.js +58 -0
  36. package/package.json +1 -1
package/dist/src/tools.js CHANGED
@@ -1,4 +1,6 @@
1
1
  import { execFileSync } from "child_process";
2
+ import fs from 'node:fs';
3
+ import path from 'node:path';
2
4
  import { EOL } from "os";
3
5
  import { HttpsProxyAgent } from "https-proxy-agent";
4
6
  import { PackageURL } from "packageurl-js";
@@ -128,6 +130,62 @@ export function getGitRootDir(cwd) {
128
130
  return undefined;
129
131
  }
130
132
  }
133
+ /**
134
+ * Normalize a filesystem path, lowercasing on Windows for case-insensitive comparison.
135
+ *
136
+ * @param {string} thePath
137
+ * @returns {string}
138
+ */
139
+ export function normalizePath(thePath) {
140
+ const normalized = path.resolve(thePath).normalize();
141
+ return process.platform === 'win32' ? normalized.toLowerCase() : normalized;
142
+ }
143
+ /**
144
+ * Walk up from `startDir` to `repoRoot` looking for an executable wrapper script.
145
+ *
146
+ * @param {string} startDir - Absolute directory to start from
147
+ * @param {string} wrapperName - Wrapper filename (e.g. `mvnw`, `gradlew`)
148
+ * @param {string} [repoRoot] - Stop boundary (defaults to git root or filesystem root)
149
+ * @returns {string | undefined}
150
+ */
151
+ export function traverseForWrapper(startDir, wrapperName, repoRoot = undefined) {
152
+ const currentDir = normalizePath(startDir);
153
+ repoRoot = repoRoot || getGitRootDir(currentDir) || path.parse(currentDir).root;
154
+ const wrapperPath = path.join(currentDir, wrapperName);
155
+ try {
156
+ fs.accessSync(wrapperPath, fs.constants.X_OK);
157
+ return wrapperPath;
158
+ }
159
+ catch {
160
+ const rootDir = path.parse(currentDir).root;
161
+ if (currentDir === repoRoot || currentDir === rootDir) {
162
+ return undefined;
163
+ }
164
+ const parentDir = path.dirname(currentDir);
165
+ if (parentDir === currentDir || parentDir === rootDir) {
166
+ return undefined;
167
+ }
168
+ return traverseForWrapper(parentDir, wrapperName, repoRoot);
169
+ }
170
+ }
171
+ /**
172
+ * Resolve a build-tool binary, preferring a wrapper when configured.
173
+ *
174
+ * @param {string} globalBinary - Global binary name (e.g. `mvn`, `gradle`)
175
+ * @param {string} localWrapper - Wrapper filename (e.g. `mvnw`, `gradlew.bat`)
176
+ * @param {string} startDir - Directory from which to start the wrapper search
177
+ * @param {import('./index.js').Options} [opts={}]
178
+ * @returns {string} Path to the resolved binary
179
+ */
180
+ export function resolveBinary(globalBinary, localWrapper, startDir, opts = {}) {
181
+ if (getWrapperPreference(globalBinary, opts)) {
182
+ const wrapper = traverseForWrapper(startDir, localWrapper);
183
+ if (wrapper !== undefined) {
184
+ return wrapper;
185
+ }
186
+ }
187
+ return getCustomPath(globalBinary, opts);
188
+ }
131
189
  /** this method invokes command string in a process in a synchronous way.
132
190
  * @param {string} bin - the command to be invoked
133
191
  * @param {Array<string>} args - the args to pass to the binary
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trustify-da/trustify-da-javascript-client",
3
- "version": "0.3.0-ea.cdf078c",
3
+ "version": "0.3.0-ea.d2fee6b",
4
4
  "description": "Code-Ready Dependency Analytics JavaScript API.",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://github.com/guacsec/trustify-da-javascript-client#README.md",