From 3c1d61ca07e88686a101691ddde9f2cb9873c285 Mon Sep 17 00:00:00 2001 From: Fons van der Plas Date: Wed, 4 Dec 2024 13:53:23 +0100 Subject: [PATCH] project toml --- Project.toml | 2 +- src/Configuration.jl | 1 - src/PlutoSliderServer.jl | 2 ++ src/Types.jl | 1 - 4 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Project.toml b/Project.toml index 5c692ed..6716b96 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "PlutoSliderServer" uuid = "2fc8631c-6f24-4c5b-bca7-cbb509c42db4" authors = ["Fons van der Plas "] -version = "1.0.0" +version = "1.0.1" [deps] AbstractPlutoDingetjes = "6e696c72-6542-2067-7265-42206c756150" diff --git a/src/Configuration.jl b/src/Configuration.jl index 529c5c5..15af9cf 100644 --- a/src/Configuration.jl +++ b/src/Configuration.jl @@ -1,5 +1,4 @@ using Configurations -import TOML import Pluto export SliderServerSettings, ExportSettings, PlutoDeploySettings, get_configuration using FromFile diff --git a/src/PlutoSliderServer.jl b/src/PlutoSliderServer.jl index b059bfc..d86950b 100644 --- a/src/PlutoSliderServer.jl +++ b/src/PlutoSliderServer.jl @@ -44,6 +44,8 @@ export export_notebook, run_notebook export show_sample_config_toml_file +export find_notebook_files_recursive + const logger_loaded = Ref{Bool}(false) function load_cool_logger() if !logger_loaded[] diff --git a/src/Types.jl b/src/Types.jl index 2993807..eb5e7a2 100644 --- a/src/Types.jl +++ b/src/Types.jl @@ -1,5 +1,4 @@ using Configurations -import TOML import Pluto: Pluto, Token, Notebook export NotebookSession, SliderServerSettings, ExportSettings, PlutoDeploySettings, get_configuration