make example site reference remote URL

048139a87ab559991c2a88bb45be7e96ed090598

tucker <tucker@pangolin.lan> | Sun Sep 28 2025

make example site reference remote URL
example_site/eleventy.config.js:15
Before
14
15
16
17
18
19
        _type: "git",
        defaultBranch: "main",
        branchesToPull: ["main"],
        location: "../eleventy-plugin-repoviewer",
      }
    }
  })
After
14
15
16
17
18
19
        _type: "git",
        defaultBranch: "main",
        branchesToPull: ["main"],
        location: "../",
      }
    }
  })
example_site/package.json:9
Before
8
9
10
11
12
    "@11ty/eleventy": "^3.1.2",
    "@11ty/eleventy-plugin-rss": "^2.0.4",
    "@11ty/eleventy-plugin-syntaxhighlight": "^5.0.2",
    "eleventy-plugin-repoviewer": "file:~/repos/eleventy-plugin-repoviewer"
  }
}
After
8
9
10
11
12
    "@11ty/eleventy": "^3.1.2",
    "@11ty/eleventy-plugin-rss": "^2.0.4",
    "@11ty/eleventy-plugin-syntaxhighlight": "^5.0.2",
    "eleventy-plugin-repoviewer": "git+https://repos.tuckerm.us/eleventy-plugin-repoviewer.git#deploy/0.0.1-alpha.1"
  }
}