Skip to content

Commit

Permalink
Bump typescript from 3.8.3 to 5.7.2
Browse files Browse the repository at this point in the history
Bumps [typescript](https://github.com/microsoft/TypeScript) from 3.8.3 to 5.7.2.
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v3.8.3...v5.7.2)

---
updated-dependencies:
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Dec 6, 2024
1 parent 9bada9b commit f4cc28c
Show file tree
Hide file tree
Showing 2 changed files with 167 additions and 167 deletions.
10 changes: 5 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

324 changes: 162 additions & 162 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,162 +1,162 @@
{
"name": "chocolatey-vscode",
"displayName": "Chocolatey",
"publisher": "gep13",
"description": "Set of snippets and commands for helping with creating packages for Chocolatey.",
"version": "0.2.2",
"icon": "images/chocolatey.png",
"private": true,
"author": {
"name": "gep13"
},
"bugs": {
"url": "https://github.com/chocolatey-community/chocolatey-vscode/issues"
},
"homepage": "https://github.com/chocolatey-community/chocolatey-vscode",
"repository": {
"type": "git",
"url": "https://github.com/chocolatey-community/chocolatey-vscode"
},
"main": "./out/extension",
"galleryBanner": {
"color": "#DCEBFC",
"theme": "light"
},
"activationEvents": [
"onCommand:chocolatey.new",
"onCommand:chocolatey.pack",
"onCommand:chocolatey.delete",
"onCommand:chocolatey.push",
"onCommand:chocolatey.installTemplates",
"onCommand:chocolatey.apikey",
"workspaceContains:**/*.nuspec"
],
"engines": {
"vscode": "^1.30.0"
},
"categories": [
"Other"
],
"contributes": {
"configuration": [
{
"type": "object",
"title": "Chocolatey Configuration",
"properties": {
"chocolatey.templates": {
"type": "object",
"default": {
"names": [
"msi.template",
"zip.template"
],
"source": "https://chocolatey.org/api/v2/"
},
"properties": {
"names": {
"type": "array",
"description": "The names of the Chocolatey Packages which contain templates which should be installed.",
"default": [
"msi.template",
"zip.template"
]
},
"source": {
"type": "string",
"description": "The source to install the template packages from.",
"default": "https://chocolatey.org/api/v2/"
}
},
"description": "The Chocolatey Template Packages Configuration"
},
"chocolatey.commands": {
"properties": {
"type": "object",
"new": {
"type": "object",
"properties": {
"properties": {
"type": "object",
"description": "A key value pair of properties to pass to Chocolatey when creating a new package.",
"uniqueItems": true,
"title": "New package properties"
}
}
}
}
}
}
}
],
"commands": [
{
"command": "chocolatey.new",
"title": "Chocolatey: Create new Chocolatey package"
},
{
"command": "chocolatey.pack",
"title": "Chocolatey: Pack Chocolatey package(s)"
},
{
"command": "chocolatey.delete",
"title": "Chocolatey: Delete Chocolatey package(s)"
},
{
"command": "chocolatey.push",
"title": "Chocolatey: Push Chocolatey package(s)"
},
{
"command": "chocolatey.installTemplates",
"title": "Chocolatey: Install Template package(s)"
},
{
"command": "chocolatey.apikey",
"title": "Chocolatey: Add API Key"
}
],
"menus": {
"explorer/context": [
{
"when": "explorerResourceIsFolder",
"command": "chocolatey.new",
"group": "2_workspace"
}
]
},
"snippets": [
{
"language": "powershell",
"path": "./snippets/powershell.json"
}
],
"languages": [
{
"id": "zip",
"extensions": [
".nupkg"
]
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/node": "^13.13.2",
"@types/node-fetch": "^2.5.7",
"@types/vscode": "^1.44.0",
"@types/xml2js": "^0.4.5",
"tslint": "^6.1.1",
"typescript": "^3.8.3"
},
"dependencies": {
"xml2js": "^0.4.23"
},
"extensionPack": [
"ms-vscode.PowerShell",
"slevesque.vscode-zipexplorer"
]
}
{
"name": "chocolatey-vscode",
"displayName": "Chocolatey",
"publisher": "gep13",
"description": "Set of snippets and commands for helping with creating packages for Chocolatey.",
"version": "0.2.2",
"icon": "images/chocolatey.png",
"private": true,
"author": {
"name": "gep13"
},
"bugs": {
"url": "https://github.com/chocolatey-community/chocolatey-vscode/issues"
},
"homepage": "https://github.com/chocolatey-community/chocolatey-vscode",
"repository": {
"type": "git",
"url": "https://github.com/chocolatey-community/chocolatey-vscode"
},
"main": "./out/extension",
"galleryBanner": {
"color": "#DCEBFC",
"theme": "light"
},
"activationEvents": [
"onCommand:chocolatey.new",
"onCommand:chocolatey.pack",
"onCommand:chocolatey.delete",
"onCommand:chocolatey.push",
"onCommand:chocolatey.installTemplates",
"onCommand:chocolatey.apikey",
"workspaceContains:**/*.nuspec"
],
"engines": {
"vscode": "^1.30.0"
},
"categories": [
"Other"
],
"contributes": {
"configuration": [
{
"type": "object",
"title": "Chocolatey Configuration",
"properties": {
"chocolatey.templates": {
"type": "object",
"default": {
"names": [
"msi.template",
"zip.template"
],
"source": "https://chocolatey.org/api/v2/"
},
"properties": {
"names": {
"type": "array",
"description": "The names of the Chocolatey Packages which contain templates which should be installed.",
"default": [
"msi.template",
"zip.template"
]
},
"source": {
"type": "string",
"description": "The source to install the template packages from.",
"default": "https://chocolatey.org/api/v2/"
}
},
"description": "The Chocolatey Template Packages Configuration"
},
"chocolatey.commands": {
"properties": {
"type": "object",
"new": {
"type": "object",
"properties": {
"properties": {
"type": "object",
"description": "A key value pair of properties to pass to Chocolatey when creating a new package.",
"uniqueItems": true,
"title": "New package properties"
}
}
}
}
}
}
}
],
"commands": [
{
"command": "chocolatey.new",
"title": "Chocolatey: Create new Chocolatey package"
},
{
"command": "chocolatey.pack",
"title": "Chocolatey: Pack Chocolatey package(s)"
},
{
"command": "chocolatey.delete",
"title": "Chocolatey: Delete Chocolatey package(s)"
},
{
"command": "chocolatey.push",
"title": "Chocolatey: Push Chocolatey package(s)"
},
{
"command": "chocolatey.installTemplates",
"title": "Chocolatey: Install Template package(s)"
},
{
"command": "chocolatey.apikey",
"title": "Chocolatey: Add API Key"
}
],
"menus": {
"explorer/context": [
{
"when": "explorerResourceIsFolder",
"command": "chocolatey.new",
"group": "2_workspace"
}
]
},
"snippets": [
{
"language": "powershell",
"path": "./snippets/powershell.json"
}
],
"languages": [
{
"id": "zip",
"extensions": [
".nupkg"
]
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/node": "^13.13.2",
"@types/node-fetch": "^2.5.7",
"@types/vscode": "^1.44.0",
"@types/xml2js": "^0.4.5",
"tslint": "^6.1.1",
"typescript": "^5.7.2"
},
"dependencies": {
"xml2js": "^0.4.23"
},
"extensionPack": [
"ms-vscode.PowerShell",
"slevesque.vscode-zipexplorer"
]
}

0 comments on commit f4cc28c

Please sign in to comment.