diff --git a/src/generators/argon/sourcemap.luau b/src/generators/argon/sourcemap.luau index ea21565..928928d 100644 --- a/src/generators/argon/sourcemap.luau +++ b/src/generators/argon/sourcemap.luau @@ -4,6 +4,7 @@ local serde = require("@lune/serde") local stdio = require("@lune/stdio") local PLATFORM_SEP = if process.os == "windows" then "\\" else "/" +_G.interactive = false -- A mapping of things to do depending on the file present local PATH_ACTION_MAP: { [string]: (dir: string) -> number? } = { diff --git a/src/generators/argon/sync_config.luau b/src/generators/argon/sync_config.luau index f040c46..677e859 100644 --- a/src/generators/argon/sync_config.luau +++ b/src/generators/argon/sync_config.luau @@ -8,6 +8,8 @@ export type DataModelTree = rojoSyncConfig.DataModelTree export type Tree = rojoSyncConfig.Tree export type SyncConfig = rojoSyncConfig.SyncConfig +_G.interactive = false + --- Generates an Argon sync configuration file (`default.project.json`) from a list of --- input files to be included. diff --git a/src/generators/rojo/sourcemap.luau b/src/generators/rojo/sourcemap.luau index 7404cad..0ed241b 100644 --- a/src/generators/rojo/sourcemap.luau +++ b/src/generators/rojo/sourcemap.luau @@ -4,6 +4,7 @@ local serde = require("@lune/serde") local stdio = require("@lune/stdio") local PLATFORM_SEP = if process.os == "windows" then "\\" else "/" +_G.interactive = false -- A mapping of things to do depending on the file present local PATH_ACTION_MAP: { [string]: (dir: string) -> number? } = { diff --git a/src/generators/rojo/sync_config.luau b/src/generators/rojo/sync_config.luau index 2048bba..8458282 100644 --- a/src/generators/rojo/sync_config.luau +++ b/src/generators/rojo/sync_config.luau @@ -49,6 +49,7 @@ export type SyncConfig = { } local PLATFORM_SEP = if process.os == "windows" then "\\" else "/" +_G.interactive = false --- Generates a Rojo sync configuration file (`default.project.json`) from a list of --- input files to be included.