Update dev dependencies

pull/2748/head
Alex Dima 8 years ago
parent 3c5417b252
commit d475297526

@ -79,7 +79,9 @@ gulp.task('release', ['clean-release','compile'], function() {
bundleOne('src/solidity') bundleOne('src/solidity')
) )
.pipe(uglify({ .pipe(uglify({
preserveComments: 'some' output: {
comments: /^!/
}
})) }))
.pipe(es.through(function(data) { .pipe(es.through(function(data) {
data.contents = new Buffer( data.contents = new Buffer(

@ -18,17 +18,17 @@
"url": "https://github.com/Microsoft/monaco-languages/issues" "url": "https://github.com/Microsoft/monaco-languages/issues"
}, },
"devDependencies": { "devDependencies": {
"event-stream": "^3.3.2", "event-stream": "^3.3.4",
"gulp": "^3.9.1", "gulp": "^3.9.1",
"gulp-requirejs": "^0.1.3", "gulp-requirejs": "^1.0.0-rc2",
"gulp-tsb": "^2.0.0", "gulp-tsb": "^2.0.3",
"gulp-uglify": "^1.5.3", "gulp-uglify": "^3.0.0",
"jsdom-no-contextify": "^3.1.0", "jsdom-no-contextify": "^3.1.0",
"merge-stream": "^1.0.0", "merge-stream": "^1.0.1",
"mocha": "^2.5.3", "mocha": "^3.4.2",
"monaco-editor-core": "^0.8.0", "monaco-editor-core": "^0.8.0",
"object-assign": "^4.1.0", "object-assign": "^4.1.1",
"rimraf": "^2.5.2", "rimraf": "^2.6.1",
"typescript": "2.0.3" "typescript": "2.3.4"
} }
} }

@ -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'; 'use strict';
import IRichLanguageConfiguration = monaco.languages.LanguageConfiguration; import IRichLanguageConfiguration = monaco.languages.LanguageConfiguration;

@ -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'; 'use strict';
import { testTokenization } from './testRunner'; import { testTokenization } from './testRunner';

Loading…
Cancel
Save