@@ -359,7 +359,7 @@ for (const [d, p] of Object.entries(data.projectByRepo)) {
359359}
360360
361361for ( const [ d , pack ] of Object . entries ( data . packageByName ) ) {
362- const { description, keywords, manifestBase , readmeName, repo} = pack
362+ const { description, keywords, readmeName, repo} = pack
363363 const input = new URL ( '../data/readme/' + readmeName , import . meta. url )
364364 const pathname = '/explore/package/' + d + '/'
365365
@@ -427,7 +427,6 @@ page(
427427const sitemapEntries = [ ]
428428/** @type {Array<VFile> } */
429429const learnFiles = [ ]
430- const now = new Date ( )
431430
432431for ( const render of tasks ) {
433432 const { tree, file} = await render ( )
@@ -503,7 +502,8 @@ for (const file of newestLearnFiles) {
503502 if (
504503 Object . hasOwn ( urlAttributes , property ) &&
505504 isElement ( node , urlAttributes [ property ] ) &&
506- node . properties [ property ] != null
505+ node . properties [ property ] !== null &&
506+ node . properties [ property ] !== undefined
507507 ) {
508508 node . properties [ property ] = new URL (
509509 String ( node . properties [ property ] ) ,
0 commit comments