Skip to content

Commit f557915

Browse files
authored
chore(download-url): move package into monorepo (#484)
1 parent 1fd9027 commit f557915

23 files changed

+2465
-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: 200 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/.depcheckrc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
ignores:
2+
- '@mongodb-js/prettier-config-devtools'
3+
- '@mongodb-js/tsconfig-devtools'
4+
- '@types/chai'
5+
- '@types/sinon-chai'
6+
- 'sinon'
7+
ignore-patterns:
8+
- 'lib'

packages/download-url/.eslintignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.nyc-output
2+
lib

packages/download-url/.eslintrc.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
module.exports = {
2+
root: true,
3+
extends: ['@mongodb-js/eslint-config-devtools'],
4+
parserOptions: {
5+
tsconfigRootDir: __dirname,
6+
project: ['./tsconfig-lint.json'],
7+
},
8+
rules: {
9+
'@typescript-eslint/no-explicit-any': 'off',
10+
'@typescript-eslint/no-non-null-assertion': 'off',
11+
'@typescript-eslint/restrict-template-expressions': 'off',
12+
},
13+
};

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/.mocharc.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module.exports = require('@mongodb-js/mocha-config-devtools');

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-*/

packages/download-url/.prettierignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.nyc_output
2+
lib
3+
coverage

0 commit comments

Comments
 (0)