Skip to content

Commit 69cdd14

Browse files
committed
add note
1 parent 17f1f23 commit 69cdd14

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

scripts/generate_resources.res

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
/** this is the list of community resources we want to generate */
2-
let sites = [
1+
/** This is the list of community content we want to generate. */
2+
/** If you have content you would like to add, please open up a PR adding the link to this list and then run `npm run generate_resources` */
3+
let urls = [
34
// 2025
45
"https://dev.to/dzakh/javascript-schema-library-from-the-future-5420",
56
"https://www.youtube.com/watch?v=yKl2fSdnw7w",
@@ -28,7 +29,7 @@ let sites = [
2829

2930
let generate = async () => {
3031
let filePath = "data/resources.json"
31-
let metaData = await MetaTagsApi.getMetaTags(sites)
32+
let metaData = await MetaTagsApi.getMetaTags(urls)
3233

3334
let fileContent = `${metaData
3435
->Array.map(i =>

0 commit comments

Comments
 (0)