From 2bca45b1698bead2e201176c7a21e26a3e331b89 Mon Sep 17 00:00:00 2001 From: mini-bomba <55105495+mini-bomba@users.noreply.github.com> Date: Fri, 19 Sep 2025 22:10:38 +0200 Subject: [PATCH] begin the source maps branch --- .gitignore | 12 ++++++++++++ README.md | 31 +++++++++++++++++++++++++++++++ 2 files changed, 43 insertions(+) create mode 100644 .gitignore create mode 100644 README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..270d2382 --- /dev/null +++ b/.gitignore @@ -0,0 +1,12 @@ +config.json +ignored +.idea/ +node_modules +web-ext-artifacts +.vscode/ +dist/ +tmp/ +.DS_Store +ci/invidious_instances.json +ci/piped_instances.json +test-results \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 00000000..46ea761d --- /dev/null +++ b/README.md @@ -0,0 +1,31 @@ +# Source maps for SponsorBlock + +This branch contains an archive of extension source maps since they were enabled for production builds. +Source maps for old extension versions may be deleted in the future. + +This branch is completely separate from the master branch and all other development branches - [see the master branch to view the latest source code](https://github.com/ajayyy/SponsorBlock/tree/master). + +The directory structure of this repository is as follows: +``` +/ +├── chrome +│ └── +│ └── .js.map files +├── chrome-beta +│ └── +│ └── .js.map files +├── edge +│ └── +│ └── .js.map files +├── firefox +│ └── +│ └── .js.map files +├── firefox-beta +│ └── +│ └── .js.map files +└── safari + └── + └── .js.map files +``` + +This structure is also served with GitHub Pages at https://ajayyy.github.io/SponsorBlock/ - this is where the extensions will be attempting to fetch the maps from.