deepline 0.3.61 → 0.3.63
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/dist/bundling-sources/sdk/src/release.ts +1 -1
- package/dist/bundling-sources/shared_libs/plays/bundling/index.ts +9 -1
- package/dist/cli/index.js +372 -279
- package/dist/cli/index.mjs +352 -259
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/dist/plays/bundle-play-file.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -826,7 +826,7 @@ var SDK_RELEASE = {
|
|
|
826
826
|
// available at toolResponse.rawV2 while toolResponse.raw and all declared
|
|
827
827
|
// getters keep their established compatibility behavior.
|
|
828
828
|
// 0.3.1 deprecated the legacy `deepline enrich` command in favor of Plays.
|
|
829
|
-
version: "0.3.
|
|
829
|
+
version: "0.3.63",
|
|
830
830
|
updateSummary: "Automatic CLI updates are now enabled by default. To opt out, run `deepline settings autoupdate off`; use `deepline settings autoupdate on` to re-enable updates or `deepline settings autoupdate pin <version>` to hold an exact release. This release also adds raw-v2 tool responses at toolResponse.rawV2 while preserving existing toolResponse.raw and declared getters.",
|
|
831
831
|
packageCapabilities: {
|
|
832
832
|
updatePreferences: 1
|
package/dist/index.mjs
CHANGED
|
@@ -738,7 +738,7 @@ var SDK_RELEASE = {
|
|
|
738
738
|
// available at toolResponse.rawV2 while toolResponse.raw and all declared
|
|
739
739
|
// getters keep their established compatibility behavior.
|
|
740
740
|
// 0.3.1 deprecated the legacy `deepline enrich` command in favor of Plays.
|
|
741
|
-
version: "0.3.
|
|
741
|
+
version: "0.3.63",
|
|
742
742
|
updateSummary: "Automatic CLI updates are now enabled by default. To opt out, run `deepline settings autoupdate off`; use `deepline settings autoupdate on` to re-enable updates or `deepline settings autoupdate pin <version>` to hold an exact release. This release also adds raw-v2 tool responses at toolResponse.rawV2 while preserving existing toolResponse.raw and declared getters.",
|
|
743
743
|
packageCapabilities: {
|
|
744
744
|
updatePreferences: 1
|
|
@@ -3907,7 +3907,7 @@ function resolvePackageImport(specifier, fromFile, adapter) {
|
|
|
3907
3907
|
async function analyzeSourceGraph(entryFile, adapter, exportName) {
|
|
3908
3908
|
const absoluteEntryFile = await normalizeLocalPath(entryFile);
|
|
3909
3909
|
const workspace = createPlayWorkspace(absoluteEntryFile);
|
|
3910
|
-
const sourceIdentityRoot = adapter.sourceIdentityRoot;
|
|
3910
|
+
const sourceIdentityRoot = adapter.sourceIdentityRoot ? await normalizeLocalPath(adapter.sourceIdentityRoot) : void 0;
|
|
3911
3911
|
const localFiles = /* @__PURE__ */ new Map();
|
|
3912
3912
|
const nodeBuiltins = /* @__PURE__ */ new Set();
|
|
3913
3913
|
const packages = /* @__PURE__ */ new Map();
|