mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-05-03 12:02:27 +02:00
7 lines
238 B
JavaScript
7 lines
238 B
JavaScript
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
(() => {
|
|
const changelogPath = path.resolve(__dirname, '../../CHANGELOG.md');
|
|
fs.copyFileSync(changelogPath, path.resolve(__dirname, '../content/changelog/CHANGELOG.md'));
|
|
})(); |