From f635a9022348723f6b683de60ce427f5d8cc8b8d Mon Sep 17 00:00:00 2001 From: Alex Dima Date: Mon, 5 Sep 2016 16:19:04 +0200 Subject: [PATCH] This repository's changelog is the truth --- CHANGELOG.md | 1 + gulpfile.js | 9 ++------- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f41fd12..6bb8bd2c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ - exposed API to get to the underlying language service. - fixed a bug that prevented modifying `extraLibs`. - Multiple improvements/bugfixes to the `css`, `less`, `scss` and `json` language services. +- Added support for ATS/Postiats. ### API changes: - settings: diff --git a/gulpfile.js b/gulpfile.js index 9b73c156..5cae06ba 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -31,23 +31,18 @@ gulp.task('release', ['clean-release'], function() { })) .pipe(gulp.dest('release')), + gulp.src('CHANGELOG.md'), + // min-maps folder gulp.src('node_modules/monaco-editor-core/min-maps/**/*').pipe(gulp.dest('release/min-maps')), // other files gulp.src([ 'node_modules/monaco-editor-core/LICENSE', - 'node_modules/monaco-editor-core/CHANGELOG.md', 'node_modules/monaco-editor-core/monaco.d.ts', 'node_modules/monaco-editor-core/ThirdPartyNotices.txt', 'README.md' ]) - .pipe(es.through(function(data) { - if (/CHANGELOG\.md$/.test(data.path)) { - fs.writeFileSync('CHANGELOG.md', data.contents); - } - this.emit('data', data); - })) .pipe(addPluginDTS()) .pipe(addPluginThirdPartyNotices()) .pipe(gulp.dest('release'))