Skip to content

Commit

Permalink
Merge remote-tracking branch 'Parent/main' into Current
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Jun 13, 2024
2 parents 744a053 + ddfe6de commit dc6b100
Show file tree
Hide file tree
Showing 5 changed files with 196 additions and 15 deletions.
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
16.14.2
8 changes: 8 additions & 0 deletions jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"compilerOptions": {
"resolveJsonModule": true,
"lib": [
"esnext"
]
}
}
4 changes: 4 additions & 0 deletions lib/index.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

require('./download.test');
153 changes: 153 additions & 0 deletions package-lock.json

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

45 changes: 30 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,32 @@
{
"description": "A module for copying zeromq binaries built using Azure Pipelines into the zeromq package.",
"devDependencies": {
"@types/node": "20.14.2",
"follow-redirects": "1.15.6",
"https-proxy-agent": "7.0.4",
"proxy-from-env": "1.1.0"
},
"main": "lib/index.js",
"name": "@vscode/zeromq",
"overrides": {
"agent-base": "6.0.2"
},
"scripts": {
"downloadBinaries": "node ./build/prePublish.js"
}
"name": "@vscode/zeromq",
"version": "0.2.1",
"description": "A module for copying zeromq binaries built using Azure Pipelines into the zeromq package.",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/vscode-zeromq.git"
},
"keywords": [
"zeromq"
],
"author": "Don Jayamanne",
"license": "MIT",
"bugs": {
"url": "https://github.com/microsoft/vscode-zeromq/issues"
},
"homepage": "https://github.com/microsoft/vscode-zeromq#readme",
"scripts": {
"test": "node ./lib/index.test.js",
"downloadBinaries": "node ./build/prePublish.js"
},
"devDependencies": {
"@types/node": "^18.15.0",
"follow-redirects": "^1.15.2",
"https-proxy-agent": "^5.0.1",
"proxy-from-env": "^1.1.0"
},
"overrides": {
"agent-base": "^6.0.2"
}
}

0 comments on commit dc6b100

Please sign in to comment.