1
0
Fork 0
mirror of https://github.com/betagouv/mon-entreprise synced 2025-02-10 16:15:01 +00:00
mon-entreprise/site/scripts/utils.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
369 B
JavaScript
Raw Normal View History

2021-12-07 13:46:03 +01:00
import { existsSync, mkdirSync, writeFileSync } from 'fs'
import { join } from 'path'
2021-12-07 13:46:03 +01:00
const dataDir = new URL('../source/data/', import.meta.url).pathname
export function createDataDir() {
if (!existsSync(dataDir)) {
mkdirSync(dataDir)
}
}
2021-12-07 13:46:03 +01:00
export function writeInDataDir(filename, data) {
writeFileSync(join(dataDir, filename), JSON.stringify(data, null, 2))
}