This repository has been archived by the owner on Jun 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Nauman Umer
authored and
Nauman Umer
committed
Mar 2, 2017
1 parent
8111471
commit 200e471
Showing
41 changed files
with
29,707 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
/node_modules/ | ||
/out/ | ||
/release/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
/.vscode/ | ||
/lib/ | ||
/out/ | ||
/src/ | ||
/test/ | ||
/release/dev/ | ||
/gulpfile.js | ||
/.npmignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// Place your settings in this file to overwrite default and user settings. | ||
{ | ||
"files.trimTrailingWhitespace": true, | ||
"search.exclude": { | ||
"**/node_modules": true, | ||
"**/release": true, | ||
"**/out": true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) Microsoft Corporation | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,223 @@ | ||
/*--------------------------------------------------------------------------------------------- | ||
* Copyright (c) Microsoft Corporation. All rights reserved. | ||
* Licensed under the MIT License. See License.txt in the project root for license information. | ||
*--------------------------------------------------------------------------------------------*/ | ||
|
||
var gulp = require('gulp'); | ||
var tsb = require('gulp-tsb'); | ||
var assign = require('object-assign'); | ||
var fs = require('fs'); | ||
var path = require('path'); | ||
var merge = require('merge-stream'); | ||
var rjs = require('gulp-requirejs'); | ||
var uglify = require('gulp-uglify'); | ||
var rimraf = require('rimraf'); | ||
var es = require('event-stream'); | ||
|
||
gulp.task('clean-release', function(cb) { rimraf('release', { maxBusyTries: 1 }, cb); }); | ||
gulp.task('release', ['clean-release', 'compile'], function() { | ||
|
||
var sha1 = getGitVersion(__dirname); | ||
var semver = require('./package.json').version; | ||
var headerVersion = semver + '(' + sha1 + ')'; | ||
|
||
var BUNDLED_FILE_HEADER = [ | ||
'/*!-----------------------------------------------------------------------------', | ||
' * Copyright (c) Microsoft Corporation. All rights reserved.', | ||
' * monaco-css version: ' + headerVersion, | ||
' * Released under the MIT license', | ||
' * https://github.com/Microsoft/monaco-css/blob/master/LICENSE.md', | ||
' *-----------------------------------------------------------------------------*/', | ||
'' | ||
].join('\n'); | ||
|
||
function bundleOne(moduleId, exclude) { | ||
return rjs({ | ||
baseUrl: '/out/', | ||
name: 'vs/language/css/' + moduleId, | ||
out: moduleId + '.js', | ||
exclude: exclude, | ||
paths: { | ||
'vs/language/css': __dirname + '/out' | ||
}, | ||
packages: [{ | ||
name: 'vscode-css-languageservice', | ||
location: __dirname + '/lang_services/lib', | ||
main: 'cssLanguageService' | ||
}, { | ||
name: 'vscode-languageserver-types', | ||
location: __dirname + '/node_modules/vscode-languageserver-types/lib', | ||
main: 'main' | ||
}, { | ||
name: 'vscode-nls', | ||
location: __dirname + '/out/fillers', | ||
main: 'vscode-nls' | ||
}] | ||
}) | ||
} | ||
|
||
return merge( | ||
merge( | ||
bundleOne('monaco.contribution', ['vs/language/css/cssMode']), | ||
bundleOne('cssMode'), | ||
bundleOne('cssWorker') | ||
) | ||
.pipe(es.through(function(data) { | ||
data.contents = new Buffer( | ||
BUNDLED_FILE_HEADER + | ||
data.contents.toString() | ||
); | ||
this.emit('data', data); | ||
})) | ||
.pipe(gulp.dest('./release/dev')) | ||
.pipe(uglify({ | ||
preserveComments: 'some' | ||
})) | ||
.pipe(gulp.dest('./release/min')), | ||
gulp.src('src/monaco.d.ts').pipe(gulp.dest('./release/min')) | ||
); | ||
}); | ||
|
||
|
||
var compilation = tsb.create(assign({ verbose: true }, require('./src/tsconfig.json').compilerOptions)); | ||
|
||
var tsSources = 'src/**/*.ts'; | ||
|
||
function compileTask() { | ||
return merge( | ||
gulp.src(tsSources).pipe(compilation()) | ||
) | ||
.pipe(gulp.dest('out')); | ||
} | ||
|
||
gulp.task('clean-out', function(cb) { rimraf('out', { maxBusyTries: 1 }, cb); }); | ||
gulp.task('compile', ['clean-out'], compileTask); | ||
gulp.task('compile-without-clean', compileTask); | ||
gulp.task('watch', ['compile'], function() { | ||
gulp.watch(tsSources, ['compile-without-clean']); | ||
}); | ||
|
||
|
||
/** | ||
* Escape text such that it can be used in a javascript string enclosed by double quotes (") | ||
*/ | ||
function escapeText(text) { | ||
// http://www.javascriptkit.com/jsref/escapesequence.shtml | ||
// \b Backspace. | ||
// \f Form feed. | ||
// \n Newline. | ||
// \O Nul character. | ||
// \r Carriage return. | ||
// \t Horizontal tab. | ||
// \v Vertical tab. | ||
// \' Single quote or apostrophe. | ||
// \" Double quote. | ||
// \\ Backslash. | ||
// \ddd The Latin-1 character specified by the three octal digits between 0 and 377. ie, copyright symbol is \251. | ||
// \xdd The Latin-1 character specified by the two hexadecimal digits dd between 00 and FF. ie, copyright symbol is \xA9. | ||
// \udddd The Unicode character specified by the four hexadecimal digits dddd. ie, copyright symbol is \u00A9. | ||
var _backspace = '\b'.charCodeAt(0); | ||
var _formFeed = '\f'.charCodeAt(0); | ||
var _newLine = '\n'.charCodeAt(0); | ||
var _nullChar = 0; | ||
var _carriageReturn = '\r'.charCodeAt(0); | ||
var _tab = '\t'.charCodeAt(0); | ||
var _verticalTab = '\v'.charCodeAt(0); | ||
var _backslash = '\\'.charCodeAt(0); | ||
var _doubleQuote = '"'.charCodeAt(0); | ||
|
||
var startPos = 0, | ||
chrCode, replaceWith = null, | ||
resultPieces = []; | ||
|
||
for (var i = 0, len = text.length; i < len; i++) { | ||
chrCode = text.charCodeAt(i); | ||
switch (chrCode) { | ||
case _backspace: | ||
replaceWith = '\\b'; | ||
break; | ||
case _formFeed: | ||
replaceWith = '\\f'; | ||
break; | ||
case _newLine: | ||
replaceWith = '\\n'; | ||
break; | ||
case _nullChar: | ||
replaceWith = '\\0'; | ||
break; | ||
case _carriageReturn: | ||
replaceWith = '\\r'; | ||
break; | ||
case _tab: | ||
replaceWith = '\\t'; | ||
break; | ||
case _verticalTab: | ||
replaceWith = '\\v'; | ||
break; | ||
case _backslash: | ||
replaceWith = '\\\\'; | ||
break; | ||
case _doubleQuote: | ||
replaceWith = '\\"'; | ||
break; | ||
} | ||
if (replaceWith !== null) { | ||
resultPieces.push(text.substring(startPos, i)); | ||
resultPieces.push(replaceWith); | ||
startPos = i + 1; | ||
replaceWith = null; | ||
} | ||
} | ||
resultPieces.push(text.substring(startPos, len)); | ||
return resultPieces.join(''); | ||
} | ||
|
||
function getGitVersion(repo) { | ||
var git = path.join(repo, '.git'); | ||
var headPath = path.join(git, 'HEAD'); | ||
var head; | ||
|
||
try { | ||
head = fs.readFileSync(headPath, 'utf8').trim(); | ||
} catch (e) { | ||
return void 0; | ||
} | ||
|
||
if (/^[0-9a-f]{40}$/i.test(head)) { | ||
return head; | ||
} | ||
|
||
var refMatch = /^ref: (.*)$/.exec(head); | ||
|
||
if (!refMatch) { | ||
return void 0; | ||
} | ||
|
||
var ref = refMatch[1]; | ||
var refPath = path.join(git, ref); | ||
|
||
try { | ||
return fs.readFileSync(refPath, 'utf8').trim(); | ||
} catch (e) { | ||
// noop | ||
} | ||
|
||
var packedRefsPath = path.join(git, 'packed-refs'); | ||
var refsRaw; | ||
|
||
try { | ||
refsRaw = fs.readFileSync(packedRefsPath, 'utf8').trim(); | ||
} catch (e) { | ||
return void 0; | ||
} | ||
|
||
var refsRegex = /^([0-9a-f]{40})\s+(.+)$/gm; | ||
var refsMatch; | ||
var refs = {}; | ||
|
||
while (refsMatch = refsRegex.exec(refsRaw)) { | ||
refs[refsMatch[2]] = refsMatch[1]; | ||
} | ||
|
||
return refs[ref]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
lib/ | ||
node_modules/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
language: node_js | ||
sudo: false | ||
|
||
node_js: | ||
- "6" |
Oops, something went wrong.