rename prismarine-viewer dir to renderer to avoid confusion (#269)

This commit is contained in:
Vitaly 2025-02-08 14:17:27 +03:00 committed by GitHub
commit f96673bc17
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
154 changed files with 239 additions and 210 deletions

View file

@ -12,6 +12,6 @@ const packageJson = JSON.parse(fs.readFileSync('./package.json', 'utf8'))
delete packageJson.optionalDependencies
fs.writeFileSync('./package.json', JSON.stringify(packageJson, null, 2), 'utf8')
const packageJsonViewer = JSON.parse(fs.readFileSync('./prismarine-viewer/package.json', 'utf8'))
const packageJsonViewer = JSON.parse(fs.readFileSync('./renderer/package.json', 'utf8'))
delete packageJsonViewer.optionalDependencies
fs.writeFileSync('./prismarine-viewer/package.json', JSON.stringify(packageJsonViewer, null, 2), 'utf8')
fs.writeFileSync('./renderer/package.json', JSON.stringify(packageJsonViewer, null, 2), 'utf8')