Skip to content

Commit 4fa7cc1

Browse files
authored
chore(compass-find-in-page): Move to typescript, use leafygreen COMPASS-5609 (#2903)
1 parent fe9a404 commit 4fa7cc1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+1688
-2823
lines changed

package-lock.json

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

packages/compass-find-in-page/.babelrc.js

Lines changed: 0 additions & 24 deletions
This file was deleted.

packages/compass-find-in-page/.browserslistrc

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 9 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,9 @@
1-
ignores: [
2-
"@babel/cli",
3-
"@babel/register",
4-
"core-js",
5-
"electron-rebuild",
6-
"font-awesome",
7-
"hadron-react-components",
8-
"karma-electron",
9-
"karma-sourcemap-loader",
10-
"karma-webpack",
11-
"mongodb-connection-model",
12-
"resolve",
13-
"webpack-bundle-analyzer",
14-
"webpack-cli",
15-
"mongodb-compass"
16-
]
1+
ignores:
2+
- '@mongodb-js/prettier-config-compass'
3+
- '@mongodb-js/tsconfig-compass'
4+
- '@types/chai'
5+
- '@types/sinon-chai'
6+
- 'sinon'
7+
- '@types/chai-dom'
8+
- '@types/react'
9+
- '@types/react-dom'

packages/compass-find-in-page/.editorconfig

Lines changed: 0 additions & 16 deletions
This file was deleted.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.nyc-output
2+
dist

packages/compass-find-in-page/.eslintrc

Lines changed: 0 additions & 5 deletions
This file was deleted.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
module.exports = {
2+
root: true,
3+
extends: ['@mongodb-js/eslint-config-compass'],
4+
parserOptions: {
5+
tsconfigRootDir: __dirname,
6+
project: ['./tsconfig-lint.json'],
7+
},
8+
};

packages/compass-find-in-page/.gitignore

Lines changed: 0 additions & 11 deletions
This file was deleted.
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-compass/compass-plugin');

0 commit comments

Comments
 (0)