Skip to content

Commit 2c9c609

Browse files
authored
chore(data-modeling): bootstrap data modeling workspace (#6869)
* chore(data-modeling): bootstrap new package, add some basic initial structure for the plugin * chore(preferences-model): add new feature flag * chore(workspaces): add all required wiring for the new workspace type * chore(sidebar): add new entrypoint * chore(compass, compass-web): add new workspace to the providers so that it can be opened
1 parent 870bce1 commit 2c9c609

File tree

29 files changed

+545
-23
lines changed

29 files changed

+545
-23
lines changed

package-lock.json

Lines changed: 247 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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'
10+
ignore-patterns:
11+
- 'dist'
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.nyc-output
2+
dist
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/plugin'],
4+
parserOptions: {
5+
tsconfigRootDir: __dirname,
6+
project: ['./tsconfig-lint.json'],
7+
},
8+
};
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)