Skip to content

Commit 813dc5c

Browse files
committed
fixup: @mongodb-js/compass-app-registry, not compass-app-registry
1 parent 1999322 commit 813dc5c

File tree

157 files changed

+321
-298
lines changed

Some content is hidden

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

157 files changed

+321
-298
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ To enable the Chrome DevTools for the Electron renderer processes, click "Settin
4242

4343
> [!NOTE]
4444
> For documentation regarding how to write plugin packages, check out the
45-
> [compass-app-registry](./packages/compass-app-registry/README.md) documentation.
45+
> [@mongodb-js/compass-app-registry](./packages/compass-app-registry/README.md) documentation.
4646
4747
To run npm scripts inside specific workspaces in the monorepo you can use either `lerna --scope` or `npm --workspace` command line arguments. As an example, to run all tests in one plugin that you are working on such as the `compass-aggregations` plugin, you can run `npm run test --workspace packages/compass-aggregation` or `lerna run test --scope @mongodb-js/compass-aggregations` commands
4848

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ Is there anything else you’d like to see in Compass? Let us know by submitting
4040
### Shared Libraries and Build Tools
4141

4242
- [**@mongodb-js/atlas-service**](packages/atlas-service): Service to handle Atlas sign in and API requests
43+
- [**@mongodb-js/compass-app-registry**](packages/compass-app-registry): Compass App Registry
4344
- [**@mongodb-js/compass-components**](packages/compass-components): React Components used in Compass
4445
- [**@mongodb-js/compass-connection-import-export**](packages/compass-connection-import-export): UI for Compass connection import/export
4546
- [**@mongodb-js/compass-connections**](packages/compass-connections): Manage your MongoDB connections and connect in Compass
@@ -67,7 +68,6 @@ Is there anything else you’d like to see in Compass? Let us know by submitting
6768
- [**bson-transpilers**](packages/bson-transpilers): Source to source compilers using ANTLR
6869
- [**compass-e2e-tests**](packages/compass-e2e-tests): E2E test suite for Compass app that follows smoke tests / feature testing matrix
6970
- [**compass-preferences-model**](packages/compass-preferences-model): Compass preferences model
70-
- [**compass-app-registry**](packages/compass-app-registry): Compass App Registry
7171
- [**hadron-build**](packages/hadron-build): Tooling for Hadron apps like Compass
7272
- [**hadron-document**](packages/hadron-document): Hadron Document
7373
- [**hadron-ipc**](packages/hadron-ipc): Simplified IPC for electron apps.

configs/testing-library-compass/.depcheckrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ ignores:
88
# dependency will introduce a circular one in our dependency tree, as it's only
99
# used for testing and doesn't require compilation, we're escaping the
1010
# recursiveness issue by just not including those in the package.json
11+
- '@mongodb-js/compass-app-registry'
1112
- '@mongodb-js/compass-logging'
1213
- '@mongodb-js/compass-telemetry'
1314
- '@mongodb-js/connection-info'
1415
- '@mongodb-js/compass-connections'
1516
- '@mongodb-js/compass-components'
1617
- '@mongodb-js/connection-storage'
1718
- 'compass-preferences-model'
18-
- 'compass-app-registry'
1919
- 'mongodb-data-service'
2020
ignore-patterns:
2121
- 'dist'

configs/testing-library-compass/src/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,11 @@ import CompassConnections, {
6363
import type {
6464
CompassPluginComponent,
6565
CompassPlugin,
66-
} from 'compass-app-registry';
66+
} from '@mongodb-js/compass-app-registry';
6767
import AppRegistry, {
6868
AppRegistryProvider,
6969
GlobalAppRegistryProvider,
70-
} from 'compass-app-registry';
70+
} from '@mongodb-js/compass-app-registry';
7171
import { expect } from 'chai';
7272
import { Provider } from 'react-redux';
7373
import ConnectionString from 'mongodb-connection-string-url';

0 commit comments

Comments
 (0)