mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 19:42:56 +01:00
Add Copyright headers
This commit is contained in:
parent
2208018338
commit
e8e78d99db
6 changed files with 25 additions and 10 deletions
|
|
@ -1,10 +1,10 @@
|
|||
/.vscode/
|
||||
/lib/
|
||||
/out/
|
||||
/scripts/
|
||||
/src/
|
||||
/test/
|
||||
/release/dev/
|
||||
/.gitignore
|
||||
/.npmignore
|
||||
/package-lock.json
|
||||
/webpack.dev.config.js
|
||||
/webpack.min.config.js
|
||||
|
|
|
|||
10
package.json
10
package.json
|
|
@ -20,11 +20,11 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"jsonc-parser": "2.0.0-next.1",
|
||||
"monaco-editor-core": "^0.11.1",
|
||||
"monaco-languages": "^0.9.0",
|
||||
"typescript": "^2.7.1",
|
||||
"vscode-json-languageservice": "^3.0.12",
|
||||
"vscode-languageserver-types": "^3.6.1",
|
||||
"monaco-editor-core": "0.11.1",
|
||||
"monaco-languages": "0.9.0",
|
||||
"typescript": "2.7.2",
|
||||
"vscode-json-languageservice": "3.0.12",
|
||||
"vscode-languageserver-types": "3.6.1",
|
||||
"webpack": "^4.1.1",
|
||||
"webpack-cli": "^2.0.10"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
|
||||
const fs = require('fs');
|
||||
const path = require('path');
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,8 @@
|
|||
"use strict";
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
exports.__esModule = true;
|
||||
var fs = require("fs");
|
||||
var ts = require("typescript");
|
||||
|
|
|
|||
|
|
@ -1,8 +1,15 @@
|
|||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
|
||||
const fs = require('fs');
|
||||
const path = require('path');
|
||||
|
||||
const target = path.join(process.cwd(), process.argv[2]);
|
||||
if (fs.existsSync(target)) {
|
||||
rmDir(target);
|
||||
}
|
||||
console.log(`Deleted ${process.argv[2]}`);
|
||||
|
||||
function rmDir(dirPath) {
|
||||
|
|
|
|||
|
|
@ -25,5 +25,4 @@ exports.createWebpackConfig = function (isDev) {
|
|||
})
|
||||
],
|
||||
};
|
||||
|
||||
}
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue