2019-05-22 18:43:52 +08:00
|
|
|
/*---------------------------------------------------------------------------------------------
|
|
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
const gulp = require('gulp');
|
|
|
|
|
|
|
|
const noop = () => { return Promise.resolve(); };
|
|
|
|
|
|
|
|
gulp.task('vscode-reh-win32-ia32-min', noop);
|
|
|
|
gulp.task('vscode-reh-win32-x64-min', noop);
|
|
|
|
gulp.task('vscode-reh-darwin-min', noop);
|
|
|
|
gulp.task('vscode-reh-linux-x64-min', noop);
|
2019-06-03 20:33:59 +08:00
|
|
|
gulp.task('vscode-reh-linux-armhf-min', noop);
|