modelValidation2 and semanticValidation2 (#5765)

* modelValidation2 and semanticValidation2

* modelvalidation2

* rename
This commit is contained in:
Sergey Shandar 2019-04-25 16:09:05 -07:00 коммит произвёл GitHub
Родитель 9b87178766
Коммит c8fec4b60d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
4 изменённых файлов: 17 добавлений и 3 удалений

Просмотреть файл

@ -51,7 +51,7 @@ jobs:
inputs:
verbose: false
- script: 'npm install -D @azure/rest-api-specs-scripts@0.3.9'
- script: 'npm run tsc && node scripts/semanticValidation.js'
- script: 'npm run tsc && node scripts/semanticValidation2.js'
displayName: 'Semantic Validation'
- job: "ModelValidation"
@ -63,7 +63,7 @@ jobs:
inputs:
verbose: false
- script: 'npm install -D @azure/rest-api-specs-scripts@0.3.9'
- script: 'npm run tsc && node scripts/modelValidation.js'
- script: 'npm run tsc && node scripts/modelValidation2.js'
displayName: 'Model Validation'
- job: "Avocado"

Просмотреть файл

@ -0,0 +1,7 @@
"use strict";
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License in the project root for license information.
Object.defineProperty(exports, "__esModule", { value: true });
const rest_api_specs_scripts_1 = require("@azure/rest-api-specs-scripts");
rest_api_specs_scripts_1.modelValidation.main().catch(e => { console.log(e); process.exit(1); });
//# sourceMappingURL=modelValidation2.js.map

Просмотреть файл

@ -0,0 +1,7 @@
"use strict";
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License in the project root for license information.
Object.defineProperty(exports, "__esModule", { value: true });
const rest_api_specs_scripts_1 = require("@azure/rest-api-specs-scripts");
rest_api_specs_scripts_1.semanticValidation.main().catch(e => { console.log(e); process.exit(1); });
//# sourceMappingURL=semanticValidation2.js.map

Просмотреть файл

@ -1,7 +1,7 @@
{
"compilerOptions": {
/* Basic Options */
"target": "esnext", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */
"target": "es2019", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */
"module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
// "lib": [], /* Specify library files to be included in the compilation. */
// "allowJs": true, /* Allow javascript files to be compiled. */