fix(docs): warnings during website build (2) (#5341)

This commit is contained in:
Marc Bernard
2025-07-27 08:30:27 -04:00
committed by GitHub
parent 67d6b5fa98
commit 3b9f1b3ca2
18 changed files with 28 additions and 29 deletions

View File

@@ -0,0 +1,6 @@
---
'@verdaccio/local-scripts': patch
'@verdaccio/website': patch
---
fix(docs): warnings during website build (2)

View File

@@ -1,8 +1,9 @@
const data = require('./progress_lang.json');
import dockerPulls from './docker_pull.json';
import monthlyDownloads from './monthly_downloads.json';
import npmjsDownloads from './npmjs_downloads.json';
import data from './progress_lang.json';
import yearlyDownloads from './yearly_downloads.json';
const translationsData = data;
const npmjsDownloads = require('./npmjs_downloads.json');
const dockerPulls = require('./docker_pull.json');
const yearlyDownloads = require('./yearly_downloads.json');
const monthlyDownloads = require('./monthly_downloads.json');
export { data, npmjsDownloads, dockerPulls, translationsData, yearlyDownloads, monthlyDownloads };

View File

@@ -4,6 +4,6 @@
"rootDir": "./src",
"outDir": "./build"
},
"include": ["src/**/*"],
"include": ["src/**/*", "src/**/*.json"],
"exclude": ["src/**/*.test.ts"]
}

View File

@@ -1,5 +1,5 @@
---
author: juan_picado
authors: juan_picado
title: Verdaccio and deterministic lock files
---

View File

@@ -1,5 +1,5 @@
---
author: juan_picado
authors: juan_picado
title: Verdaccio 4 alpha release
---

View File

@@ -1,5 +1,5 @@
---
author: juan_picado
authors: juan_picado
title: Setting up Verdaccio on DigitalOcean
---

View File

@@ -1,5 +1,5 @@
---
author: juan_picado
authors: juan_picado
title: The crazy story of Verdaccio
---

View File

@@ -1,5 +1,5 @@
---
author: juan_picado
authors: juan_picado
title: Verdaccio Migration Guides
---

View File

@@ -1,6 +1,5 @@
---
author: juan_picado
authorFBID: 1122901551
authors: juan_picado
title: Diving into JWT support for Verdaccio 4
---

View File

@@ -1,5 +1,5 @@
---
author: juan_picado
authors: juan_picado
title: The new Docker image for Verdaccio 4
---

View File

@@ -1,5 +1,5 @@
---
author: ayush_sharma
authors: ayush_sharma
title: Verdaccio 4 released !!!
---

View File

@@ -1,5 +1,5 @@
---
author: juan_picado
authors: juan_picado
title: Release 4.1.0
---

View File

@@ -1,5 +1,5 @@
---
author: juan_picado
authors: juan_picado
title: Release 4.2.0
---

View File

@@ -1,9 +1,6 @@
---
title: Managing multiples projects with Lerna and Yarn Workspaces
author: sergio_herrera
authorURL: https://github.com/sergiohgz
authorImageURL: https://avatars3.githubusercontent.com/u/14012309
authorTwitter: sergiohgz
authors: sergio_herrera
---
Verdaccio is a project with a big ecosystem, composed by several projects, each one with its own configurations and ways to manage. This fact transforms a simple maintenance operation, like updating a common dependency, into a real hard work.

View File

@@ -1,6 +1,5 @@
---
author: juan_picado
authorFBID: 1122901551
authors: juan_picado
title: Release 4.3.0
---

View File

@@ -1,9 +1,6 @@
---
title: Upgrade from v3.x to verdaccio 4.x with LDAP and Docker
author: dimitri_kopriwa
authorURL: https://twitter.com/DimitriKopriwa
authorImageURL: https://avatars1.githubusercontent.com/u/1866564?s=460&v=4
authorTwitter: DimitriKopriwa
authors: dimitri_kopriwa
---
I am Dimitri and I am a user and contributor of Verdaccio.

View File

@@ -1,5 +1,5 @@
---
author: juan_picado
authors: juan_picado
title: Verdaccio 5 migration guidelines
---

View File

@@ -346,7 +346,7 @@ module.exports = {
},
blogSidebarCount: 'ALL',
blogSidebarTitle: 'All our posts',
authorsMapPath: 'blog/authors.yml',
authorsMapPath: 'authors.yml',
editUrl: ({ locale, blogDirPath, blogPath }) => {
if (locale !== 'en') {
return `https://crowdin.com/project/verdaccio/${locale}`;