Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/publish-packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ jobs:

- name: Install Dependencies
run: |
npm ci
npm run bootstrap-ci
shell: bash

Expand Down
191 changes: 152 additions & 39 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions packages/devtools-connect/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"access": "public"
},
"bugs": {
"url": "https://github.com/mongodb-js/devtools-connect/issues"
"url": "https://github.com/mongodb-js/devtools-shared/issues"
},
"main": "dist/index.js",
"exports": {
Expand Down Expand Up @@ -81,7 +81,7 @@
"os-dns-native": "^1.2.0",
"resolve-mongodb-srv": "^1.1.1",
"sinon-chai": "^3.7.0",
"ts-node": "^10.2.1",
"ts-node": "^10.9.2",
"ts-sinon": "^2.0.1",
"typescript": "^5.0.4"
},
Expand Down
15 changes: 15 additions & 0 deletions packages/download-url/.eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"extends": [
"semistandard",
"plugin:promise/recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/no-empty-function": 0,
"no-return-assign": 0,
"camelcase": 0,
"no-cond-assign": 0,
"space-before-function-paren": ["error", "never"]
}
}
12 changes: 12 additions & 0 deletions packages/download-url/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
.DS_Store
node_modules/
.dist/
.build/
npm-debug.log
coverage/

package-lock.json
.esm-wrapper.mjs
lib/
.nyc_output
tmp-*/
12 changes: 12 additions & 0 deletions packages/download-url/.npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
test/
coverage/
.eslintrc
.jsfmtrc
.travis.yml
.DS_Store
.dist/
.build/
npm-debug.log
coverage/
.nyc_output
tmp-*/
Loading
Loading