Skip to content

Commit c1d6ead

Browse files
committed
chore: Move download-url from https://github.com/mongodb-js/download-url
1 parent 1fd9027 commit c1d6ead

File tree

17 files changed

+2087
-42
lines changed

17 files changed

+2087
-42
lines changed

.github/workflows/publish-packages.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ jobs:
4242

4343
- name: Install Dependencies
4444
run: |
45-
npm ci
4645
npm run bootstrap-ci
4746
shell: bash
4847

package-lock.json

Lines changed: 152 additions & 39 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/devtools-connect/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"access": "public"
1212
},
1313
"bugs": {
14-
"url": "https://github.com/mongodb-js/devtools-connect/issues"
14+
"url": "https://github.com/mongodb-js/devtools-shared/issues"
1515
},
1616
"main": "dist/index.js",
1717
"exports": {
@@ -81,7 +81,7 @@
8181
"os-dns-native": "^1.2.0",
8282
"resolve-mongodb-srv": "^1.1.1",
8383
"sinon-chai": "^3.7.0",
84-
"ts-node": "^10.2.1",
84+
"ts-node": "^10.9.2",
8585
"ts-sinon": "^2.0.1",
8686
"typescript": "^5.0.4"
8787
},

packages/download-url/.eslintrc

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"extends": [
3+
"semistandard",
4+
"plugin:promise/recommended",
5+
"plugin:@typescript-eslint/recommended"
6+
],
7+
"rules": {
8+
"@typescript-eslint/no-explicit-any": 0,
9+
"@typescript-eslint/no-empty-function": 0,
10+
"no-return-assign": 0,
11+
"camelcase": 0,
12+
"no-cond-assign": 0,
13+
"space-before-function-paren": ["error", "never"]
14+
}
15+
}

packages/download-url/.gitignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
.DS_Store
2+
node_modules/
3+
.dist/
4+
.build/
5+
npm-debug.log
6+
coverage/
7+
8+
package-lock.json
9+
.esm-wrapper.mjs
10+
lib/
11+
.nyc_output
12+
tmp-*/

packages/download-url/.npmignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
test/
2+
coverage/
3+
.eslintrc
4+
.jsfmtrc
5+
.travis.yml
6+
.DS_Store
7+
.dist/
8+
.build/
9+
npm-debug.log
10+
coverage/
11+
.nyc_output
12+
tmp-*/

0 commit comments

Comments
 (0)