From 208836cff86b1c5d1451d4da8018cfc9868c1dbe Mon Sep 17 00:00:00 2001 From: Victor Gutierrez Calderon Date: Tue, 2 Jul 2024 17:16:04 +1000 Subject: [PATCH] fix: swap data-config macos values --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index ae06745..03c1e81 100644 --- a/index.js +++ b/index.js @@ -10,8 +10,8 @@ const macos = name => { const library = path.join(homedir, 'Library'); return { - data: path.join(library, 'Application Support', name), - config: path.join(library, 'Preferences', name), + data: path.join(library, 'Preferences', name), + config: path.join(library, 'Application Support', name), cache: path.join(library, 'Caches', name), log: path.join(library, 'Logs', name), temp: path.join(tmpdir, name),