fix [#1847](https://github.com/microsoft/typespec/issues/1847)
This commit is contained in:
Timothee Guerin 2023-10-26 11:41:54 -07:00 коммит произвёл GitHub
Родитель be937a8b85
Коммит 533c974a47
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
32 изменённых файлов: 148 добавлений и 29 удалений

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

@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@typespec/bundler",
"comment": "**BREAKING CHANGE** Dropped support for node 16, minimum node version is now 18",
"type": "none"
}
],
"packageName": "@typespec/bundler"
}

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

@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@typespec/compiler",
"comment": "**BREAKING CHANGE** Dropped support for node 16, minimum node version is now 18",
"type": "none"
}
],
"packageName": "@typespec/compiler"
}

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

@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@typespec/http",
"comment": "**BREAKING CHANGE** Dropped support for node 16, minimum node version is now 18",
"type": "none"
}
],
"packageName": "@typespec/http"
}

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

@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@typespec/internal-build-utils",
"comment": "**BREAKING CHANGE** Dropped support for node 16, minimum node version is now 18",
"type": "none"
}
],
"packageName": "@typespec/internal-build-utils"
}

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

@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@typespec/json-schema",
"comment": "**BREAKING CHANGE** Dropped support for node 16, minimum node version is now 18",
"type": "none"
}
],
"packageName": "@typespec/json-schema"
}

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

@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@typespec/migrate",
"comment": "**BREAKING CHANGE** Dropped support for node 16, minimum node version is now 18",
"type": "none"
}
],
"packageName": "@typespec/migrate"
}

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

@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@typespec/openapi",
"comment": "**BREAKING CHANGE** Dropped support for node 16, minimum node version is now 18",
"type": "none"
}
],
"packageName": "@typespec/openapi"
}

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

@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@typespec/openapi3",
"comment": "**BREAKING CHANGE** Dropped support for node 16, minimum node version is now 18",
"type": "none"
}
],
"packageName": "@typespec/openapi3"
}

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

@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@typespec/playground",
"comment": "**BREAKING CHANGE** Dropped support for node 16, minimum node version is now 18",
"type": "none"
}
],
"packageName": "@typespec/playground"
}

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

@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@typespec/rest",
"comment": "**BREAKING CHANGE** Dropped support for node 16, minimum node version is now 18",
"type": "none"
}
],
"packageName": "@typespec/rest"
}

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

@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@typespec/versioning",
"comment": "**BREAKING CHANGE** Dropped support for node 16, minimum node version is now 18",
"type": "none"
}
],
"packageName": "@typespec/versioning"
}

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

@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "tmlanguage-generator",
"comment": "**BREAKING CHANGE** Dropped support for node 16, minimum node version is now 18",
"type": "minor"
}
],
"packageName": "tmlanguage-generator"
}

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

@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "typespec-vs",
"comment": "**BREAKING CHANGE** Dropped support for node 16, minimum node version is now 18",
"type": "none"
}
],
"packageName": "typespec-vs"
}

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

@ -14,17 +14,6 @@ jobs:
strategy:
matrix:
# Node 16
"Linux - Node 16.x":
pool: azsdk-pool-mms-ubuntu-2004-general
imageName: ubuntu-20.04
nodeVersion: "16.x"
"Windows - Node 16.x":
pool: azsdk-pool-mms-win-2022-general
imageName: windows-2022
nodeVersion: "16.x"
# Node 18
"Linux - Node 18.x":
pool: azsdk-pool-mms-ubuntu-2004-general

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

@ -22,7 +22,7 @@
".": "./dist/src/index.js"
},
"engines": {
"node": ">=16.0.0"
"node": ">=18.0.0"
},
"scripts": {
"clean": "rimraf ./dist ./temp",

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

@ -20,7 +20,7 @@
"main": "dist/src/index.js",
"tspMain": "dist/src/index.js",
"engines": {
"node": ">=16.0.0"
"node": ">=18.0.0"
},
"scripts": {
"bundle": "node ./dist/src/cli.js",

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

@ -47,7 +47,7 @@
}
},
"engines": {
"node": ">=16.0.0"
"node": ">=18.0.0"
},
"bin": {
"tsp": "cmd/tsp.js",

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

@ -34,7 +34,7 @@
}
},
"engines": {
"node": ">=16.0.0"
"node": ">=18.0.0"
},
"scripts": {
"clean": "rimraf ./dist ./temp",

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

@ -22,7 +22,7 @@
"typespec-build-tool": "cmd/cli.js"
},
"engines": {
"node": ">=16.0.0"
"node": ">=18.0.0"
},
"scripts": {
"clean": "rimraf ./dist ./temp",

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

@ -24,7 +24,7 @@
},
"tspMain": "lib/main.tsp",
"engines": {
"node": ">=16.0.0"
"node": ">=18.0.0"
},
"scripts": {
"clean": "rimraf ./dist ./temp",

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

@ -34,7 +34,7 @@
}
},
"engines": {
"node": ">=16.0.0"
"node": ">=18.0.0"
},
"scripts": {
"clean": "rimraf ./dist ./temp",

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

@ -22,7 +22,7 @@
"typespec-migrate": "./dist/src/cli.js"
},
"engines": {
"node": ">=16.0.0"
"node": ">=18.0.0"
},
"scripts": {
"clean": "rimraf ./dist ./temp",

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

@ -34,7 +34,7 @@
}
},
"engines": {
"node": ">=16.0.0"
"node": ">=18.0.0"
},
"scripts": {
"clean": "rimraf ./dist ./temp",

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

@ -34,7 +34,7 @@
}
},
"engines": {
"node": ">=16.0.0"
"node": ">=18.0.0"
},
"scripts": {
"clean": "rimraf ./dist ./temp",

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

@ -20,7 +20,7 @@
"type": "module",
"main": "dist/src/lib.js",
"engines": {
"node": ">=16.0.0"
"node": ">=18.0.0"
},
"scripts": {
"clean": "rimraf ./dist ./dist-dev ./temp ./typespecContents.json",

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

@ -26,7 +26,7 @@
"./react/viewers": "./dist/src/react/viewers.js"
},
"engines": {
"node": ">=16.0.0"
"node": ">=18.0.0"
},
"scripts": {
"clean": "rimraf ./dist ./dist-dev ./temp ./typespecContents.json",

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

@ -34,7 +34,7 @@
}
},
"engines": {
"node": ">=16.0.0"
"node": ">=18.0.0"
},
"scripts": {
"clean": "rimraf ./dist ./temp",

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

@ -26,7 +26,7 @@
}
},
"engines": {
"node": ">=16.0.0"
"node": ">=18.0.0"
},
"scripts": {
"clean": "rimraf ./dist ./temp",

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

@ -19,7 +19,7 @@
],
"main": "dist/tmlanguage-generator.js",
"engines": {
"node": ">=16.0.0"
"node": ">=18.0.0"
},
"scripts": {
"clean": "rimraf ./dist ./temp",

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

@ -36,7 +36,7 @@
}
},
"engines": {
"node": ">=16.0.0"
"node": ">=18.0.0"
},
"scripts": {
"clean": "rimraf ./dist ./temp",

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

@ -18,7 +18,7 @@
],
"type": "module",
"engines": {
"node": ">=16.0.0"
"node": ">=18.0.0"
},
"files": [
"Microsoft.TypeSpec.VS.vsix"

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

@ -34,7 +34,7 @@
}
},
"engines": {
"node": ">=16.0.0"
"node": ">=18.0.0"
},
"scripts": {
"clean": "rimraf ./dist ./temp",