From d475297526617012d1ffa2c382738ed111f756f9 Mon Sep 17 00:00:00 2001 From: Alex Dima Date: Thu, 8 Jun 2017 21:39:36 +0200 Subject: [PATCH] Update dev dependencies --- gulpfile.js | 4 +++- package.json | 18 +++++++++--------- src/solidity.ts | 5 +++++ test/solidity.test.ts | 5 +++++ 4 files changed, 22 insertions(+), 10 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 5a908be8..fad5d9fc 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -79,7 +79,9 @@ gulp.task('release', ['clean-release','compile'], function() { bundleOne('src/solidity') ) .pipe(uglify({ - preserveComments: 'some' + output: { + comments: /^!/ + } })) .pipe(es.through(function(data) { data.contents = new Buffer( diff --git a/package.json b/package.json index 42e198aa..6976cac9 100644 --- a/package.json +++ b/package.json @@ -18,17 +18,17 @@ "url": "https://github.com/Microsoft/monaco-languages/issues" }, "devDependencies": { - "event-stream": "^3.3.2", + "event-stream": "^3.3.4", "gulp": "^3.9.1", - "gulp-requirejs": "^0.1.3", - "gulp-tsb": "^2.0.0", - "gulp-uglify": "^1.5.3", + "gulp-requirejs": "^1.0.0-rc2", + "gulp-tsb": "^2.0.3", + "gulp-uglify": "^3.0.0", "jsdom-no-contextify": "^3.1.0", - "merge-stream": "^1.0.0", - "mocha": "^2.5.3", + "merge-stream": "^1.0.1", + "mocha": "^3.4.2", "monaco-editor-core": "^0.8.0", - "object-assign": "^4.1.0", - "rimraf": "^2.5.2", - "typescript": "2.0.3" + "object-assign": "^4.1.1", + "rimraf": "^2.6.1", + "typescript": "2.3.4" } } diff --git a/src/solidity.ts b/src/solidity.ts index 58c4a9c9..cf5cde1e 100644 --- a/src/solidity.ts +++ b/src/solidity.ts @@ -1,3 +1,8 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + 'use strict'; import IRichLanguageConfiguration = monaco.languages.LanguageConfiguration; diff --git a/test/solidity.test.ts b/test/solidity.test.ts index 3034c96b..ecb8add6 100644 --- a/test/solidity.test.ts +++ b/test/solidity.test.ts @@ -1,3 +1,8 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ + 'use strict'; import { testTokenization } from './testRunner';