We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
//
1 parent 35ec295 commit 092909aCopy full SHA for 092909a
scripts/disable-marker-pack.mjs
@@ -35,8 +35,9 @@ for (const marker of markersToRemove) {
35
const currentMarkers = readJSON('../data/markers.json');
36
37
const result = currentMarkers.filter(marker => {
38
+ const isPrivateMarker = marker.description.startsWith('//');
39
const id = hash(marker);
- const needsRemoval = hashes.has(id);
40
+ const needsRemoval = hashes.has(id) || isPrivateMarker;
41
return !needsRemoval;
42
});
43
0 commit comments