From 4e840a540e2daa948bd1f3ac31401cbe00d5eb79 Mon Sep 17 00:00:00 2001 From: Micha Date: Sun, 27 Jul 2025 14:33:30 +0200 Subject: [PATCH] Add repository mirrors documentation - Update package.json with correct repository URL and mirrors array - Add Repository section to README.md showing main repo and mirrors - Clarify that git.24unix.net is the primary development repository --- README.md | 10 ++++++++++ package.json | 6 +++++- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0608b50..4eb3fe8 100644 --- a/README.md +++ b/README.md @@ -98,6 +98,16 @@ grunt build npx webpack --mode=development ``` +## Repository + +**Main Repository:** [git.24unix.net/tracer/x-editable-bs5](https://git.24unix.net/tracer/x-editable-bs5) + +**Mirrors:** +- GitHub: [github.com/24unix/x-editable-bs5](https://github.com/24unix/x-editable-bs5) +- GitLab: [gitlab.com/24unix/x-editable-bs5](https://gitlab.com/24unix/x-editable-bs5) + +Development happens on the main repository at git.24unix.net, with mirrors automatically synced to GitHub and GitLab. + ## License This project maintains the same MIT license as the original x-editable project. diff --git a/package.json b/package.json index 1508652..dfaf355 100644 --- a/package.json +++ b/package.json @@ -18,8 +18,12 @@ ], "repository": { "type": "git", - "url": "https://git.24unix.net/tracer/x-editable.git" + "url": "https://git.24unix.net/tracer/x-editable-bs5.git" }, + "mirrors": [ + "https://github.com/24unix/x-editable-bs5", + "https://gitlab.com/24unix/x-editable-bs5" + ], "bugs": { "url": "https://git.24unix.net/tracer/x-editable/issues" },