trigger.dev 3.0.0-beta.45 → 3.0.0-beta.47
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/index.js
CHANGED
|
@@ -798,11 +798,11 @@ import invariant from "tiny-invariant";
|
|
|
798
798
|
import { z as z4 } from "zod";
|
|
799
799
|
|
|
800
800
|
// package.json
|
|
801
|
-
var version = "3.0.0-beta.
|
|
801
|
+
var version = "3.0.0-beta.47";
|
|
802
802
|
var dependencies = {
|
|
803
803
|
"@anatine/esbuild-decorators": "^0.2.19",
|
|
804
804
|
"@clack/prompts": "^0.7.0",
|
|
805
|
-
"@depot/cli": "0.0.1-cli.2.
|
|
805
|
+
"@depot/cli": "0.0.1-cli.2.71.0",
|
|
806
806
|
"@opentelemetry/api": "^1.8.0",
|
|
807
807
|
"@opentelemetry/api-logs": "^0.49.1",
|
|
808
808
|
"@opentelemetry/exporter-logs-otlp-http": "^0.49.1",
|
|
@@ -815,7 +815,7 @@ var dependencies = {
|
|
|
815
815
|
"@opentelemetry/sdk-trace-base": "^1.22.0",
|
|
816
816
|
"@opentelemetry/sdk-trace-node": "^1.22.0",
|
|
817
817
|
"@opentelemetry/semantic-conventions": "^1.22.0",
|
|
818
|
-
"@trigger.dev/core": "workspace:3.0.0-beta.
|
|
818
|
+
"@trigger.dev/core": "workspace:3.0.0-beta.47",
|
|
819
819
|
"@types/degit": "^2.8.3",
|
|
820
820
|
chalk: "^5.2.0",
|
|
821
821
|
chokidar: "^3.5.3",
|
|
@@ -845,7 +845,6 @@ var dependencies = {
|
|
|
845
845
|
"react-error-boundary": "^4.0.12",
|
|
846
846
|
semver: "^7.5.0",
|
|
847
847
|
"simple-git": "^3.19.0",
|
|
848
|
-
"socket.io-client": "^4.7.4",
|
|
849
848
|
"source-map-support": "^0.5.21",
|
|
850
849
|
"terminal-link": "^3.0.0",
|
|
851
850
|
"tiny-invariant": "^1.2.0",
|
|
@@ -4994,9 +4993,9 @@ async function resolveEnvironmentVariables(config, apiClient2, options) {
|
|
|
4994
4993
|
}
|
|
4995
4994
|
const projectConfig = config.config;
|
|
4996
4995
|
return await tracer.startActiveSpan("resolveEnvironmentVariables", async (span) => {
|
|
4996
|
+
const $spinner = spinner();
|
|
4997
|
+
$spinner.start("Resolving environment variables");
|
|
4997
4998
|
try {
|
|
4998
|
-
const $spinner = spinner();
|
|
4999
|
-
$spinner.start("Resolving environment variables");
|
|
5000
4999
|
let processEnv = {
|
|
5001
5000
|
...process.env
|
|
5002
5001
|
};
|
|
@@ -5040,9 +5039,12 @@ async function resolveEnvironmentVariables(config, apiClient2, options) {
|
|
|
5040
5039
|
$spinner.stop("No environment variables to sync");
|
|
5041
5040
|
return;
|
|
5042
5041
|
}
|
|
5042
|
+
} else {
|
|
5043
|
+
$spinner.stop("No environment variables to sync");
|
|
5043
5044
|
}
|
|
5044
5045
|
$spinner.stop("Environment variables resolved");
|
|
5045
5046
|
} catch (e) {
|
|
5047
|
+
$spinner.stop("Failed to resolve environment variables");
|
|
5046
5048
|
recordSpanException5(span, e);
|
|
5047
5049
|
throw e;
|
|
5048
5050
|
} finally {
|