mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-03-28 17:42:40 +01:00
7 lines
249 B
JavaScript
7 lines
249 B
JavaScript
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
const packageJson = require('../package.json');
|
|
packageJson.name = "vscode-front-matter";
|
|
|
|
fs.writeFileSync(path.join(path.resolve('.'), 'package.json'), JSON.stringify(packageJson, null, 2)); |