Skip to content

Commit 0f5c26b

Browse files
committed
Improve wording
1 parent 838933a commit 0f5c26b

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

.github/workflows/unit-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
branches: ['dev']
99

1010
jobs:
11-
build:
11+
unit-tests:
1212
runs-on: ubuntu-latest
1313

1414
steps:

docs/PACKAGE_DEPENDENCIES.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -104,12 +104,6 @@ Individual visualization packages should be self-contained:
104104
3. **Reusability**: Individual packages can be consumed separately without pulling in unnecessary dependencies
105105
4. **Maintainability**: Clear separation makes the codebase easier to understand and modify
106106
107-
### Special Cases
108-
109-
- **Core**: Foundation layer providing shared infrastructure (utilities, types, base components). Cannot depend on other packages to prevent circular dependencies.
110-
- **Dashboard**: Acts as a composition root, combining multiple visualizations. Can import from all packages.
111-
- **Editor**: Needs access to all components for configuration UI and live previews. Can import from all packages.
112-
113107
## Exemptions
114108
115109
### Storybook Stories

packages/core/helpers/tests/testStandaloneBuild.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ function copyDirSync(src, dest) {
2121
}
2222
}
2323

24+
// Tests if a package can be built in isolation
25+
// See DOCS/PACKAGE_DEPENDENCIES.md for more details
2426
export function testStandaloneBuild(pkgDir) {
2527
pkgDir = pkgDir.replace('/src', '')
2628
const pkgName = pkgDir.split('/')[pkgDir.split('/').length - 1]

0 commit comments

Comments
 (0)