Skip to content

Commit b00c572

Browse files
committed
Fix missing copyright header
1 parent 74086c8 commit b00c572

3 files changed

Lines changed: 16 additions & 1 deletion

File tree

build/monaco/package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
"devDependencies": {
1616
"debounce": "^1.0.0",
1717
"event-stream": "^3.1.7",
18+
"ghooks": "1.0.3",
1819
"glob": "^5.0.13",
1920
"gulp": "^3.8.9",
2021
"gulp-bom": "^1.0.0",
@@ -25,6 +26,7 @@
2526
"gulp-rename": "^1.2.0",
2627
"gulp-sourcemaps": "^1.6.0",
2728
"gulp-tsb": "^2.0.1",
29+
"gulp-tslint": "^4.3.0",
2830
"gulp-uglify": "^2.0.0",
2931
"gulp-util": "^3.0.6",
3032
"gulp-watch": "^4.3.9",
@@ -40,7 +42,9 @@
4042
"rimraf": "^2.2.8",
4143
"sinon": "^1.17.2",
4244
"source-map": "^0.4.4",
45+
"tslint": "^3.3.0",
4346
"typescript": "^2.0.3",
47+
"typescript-formatter": "3.1.0",
4448
"underscore": "^1.8.2",
4549
"vinyl": "^0.4.5",
4650
"vscode-nls-dev": "^2.0.1"

gulpfile.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,17 @@ var ALL_EDITOR_TASKS = [
5252
'minify-editor',
5353
'clean-editor-distro',
5454
'editor-distro',
55-
'analyze-editor-distro'
55+
'analyze-editor-distro',
56+
57+
// hygiene tasks
58+
'tslint',
59+
'hygiene',
5660
];
5761
var runningEditorTasks = process.argv.length > 2 && process.argv.slice(2).every(function(arg) { return (ALL_EDITOR_TASKS.indexOf(arg) !== -1); });
5862

5963
if (runningEditorTasks) {
6064
require(`./build/gulpfile.editor`);
65+
require(`./build/gulpfile.hygiene`);
6166
} else {
6267
// Load all the gulpfiles only if running tasks other than the editor tasks
6368
const build = path.join(__dirname, 'build');

scripts/monaco-editor-setup.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*---------------------------------------------------------------------------------------------
2+
* Copyright (c) Microsoft Corporation. All rights reserved.
3+
* Licensed under the MIT License. See License.txt in the project root for license information.
4+
*--------------------------------------------------------------------------------------------*/
5+
6+
'use strict';
17

28
var fs = require('fs');
39
var cp = require('child_process');

0 commit comments

Comments
 (0)