File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -227,7 +227,7 @@ async function buildPlaygrounds(template, versions) {
227227}
228228
229229async function buildPlayground ( template , version , versions ) {
230- const versionPath = version . path ?? version . label ;
230+ const versionPath = version . branch ?? version . tag ;
231231 const bundleScript = `<script nomodule src="${ config . bundlesPath } /${ versionPath } /${ config . bundleName } "></script>` ;
232232 const bundleESModulesScript = `<script type="module" src="${ config . bundlesPath } /${ versionPath } /${ config . bundleNameESModules } "></script>` ;
233233 const babelScript = '<script src="./babel.min.js"></script>' ;
@@ -275,6 +275,7 @@ async function getVersions() {
275275 return [ {
276276 label : BRANCH ,
277277 default : true ,
278+ branch : BRANCH ,
278279 } ] ;
279280 }
280281 const versions = await readJson ( config . versionsFile ) ;
You can’t perform that action at this time.
0 commit comments