Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
239 changes: 200 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
8 changes: 8 additions & 0 deletions packages/download-url/.depcheckrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
ignores:
- '@mongodb-js/prettier-config-devtools'
- '@mongodb-js/tsconfig-devtools'
- '@types/chai'
- '@types/sinon-chai'
- 'sinon'
ignore-patterns:
- 'lib'
2 changes: 2 additions & 0 deletions packages/download-url/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.nyc-output
lib
13 changes: 13 additions & 0 deletions packages/download-url/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
module.exports = {
root: true,
extends: ['@mongodb-js/eslint-config-devtools'],
parserOptions: {
tsconfigRootDir: __dirname,
project: ['./tsconfig-lint.json'],
},
rules: {
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/restrict-template-expressions': 'off',
},
};
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-*/
1 change: 1 addition & 0 deletions packages/download-url/.mocharc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = require('@mongodb-js/mocha-config-devtools');
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-*/
3 changes: 3 additions & 0 deletions packages/download-url/.prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.nyc_output
lib
coverage
1 change: 1 addition & 0 deletions packages/download-url/.prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"@mongodb-js/prettier-config-devtools"
Loading
Loading