This commit is contained in:
Ruben Fiszel
2026-01-21 00:30:31 +00:00
parent 203f6785c4
commit 2854922fa8
5 changed files with 33 additions and 3 deletions
+1 -2
View File
@@ -9,7 +9,6 @@ import {
yamlStringify,
} from "../../../deps.ts";
import * as wmill from "../../../gen/services.gen.ts";
import process from "node:process";
import { colors, Input, log } from "../../../deps.ts";
import { loginInteractive } from "../../core/login.ts";
@@ -516,7 +515,7 @@ async function instancePush(opts: InstanceSyncOptions) {
try {
const workspaceSettings = (await yamlParseFile(
path.join(process.cwd(), "settings.yaml"),
path.join(Deno.cwd(), "settings.yaml"),
)) as SimplifiedSettings;
await workspaceSetup(
{
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "windmill-components",
"version": "1.613.0",
"version": "1.613.4",
"scripts": {
"dev": "vite dev",
"build": "vite build",
@@ -592,6 +592,9 @@
{selectedJobStep}
{selectedJobStepType}
{restartBranchNames}
onRestartComplete={(newJobId) => {
goto('/run/' + newJobId + '?workspace=' + $workspaceStore)
}}
flowPath={job.script_path}
disabled={!$enterpriseLicense}
enterpriseOnly={!$enterpriseLicense}
+3
View File
@@ -0,0 +1,3 @@
export * from './prompts';
export declare function getScriptPrompt(language: string): string;
export declare function getFlowPrompt(): string;
File diff suppressed because one or more lines are too long