Not allowed to actually do it
This commit is contained in:
16
scripts/parse-maps.js
Normal file
16
scripts/parse-maps.js
Normal file
@@ -0,0 +1,16 @@
|
||||
import yaml from 'js-yaml';
|
||||
import fs from 'fs';
|
||||
import path from 'path';
|
||||
|
||||
const inputDir = '../static/mapFiles/yaml';
|
||||
const outputDir = '../static/mapFiles/json';
|
||||
|
||||
if (!fs.existsSync(outputDir)) fs.mkdirSync(outputDir, {recursive: true});
|
||||
|
||||
fs.readdirSync(inputDir).forEach(file => {
|
||||
if (file.endsWith('.yaml')) {
|
||||
const content = yaml.load(fs.readFileSync(path.join(inputDir, file), 'utf8'));
|
||||
const fileName = file.replace('.yaml', '.json');
|
||||
fs.writeFileSync(path.join(outputDir, fileName), JSON.stringify(content));
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user