50c057184c
* feat(Icons removal): Removed all related icons commands and files * chore: fix (remove) all gulp related imports and task for icons * chore: removed extensions folder and switch all imports (+ small fixes) * chore: re-added defaults.json on root * feat(Icons removal): Added vsc-material-theme-icons dependency
10 lines
329 B
TypeScript
10 lines
329 B
TypeScript
import * as fs from 'fs';
|
|
import * as gulp from 'gulp';
|
|
import {CHARSET} from '../../src/consts/files';
|
|
|
|
export default gulp.task('changelog-title', () => {
|
|
fs.writeFileSync(
|
|
'./CHANGELOG.md',
|
|
fs.readFileSync('CHANGELOG.md', CHARSET).replace('# Change Log', '# Material Theme Changelog'),
|
|
{encoding: CHARSET});
|
|
});
|