Skip to content

Commit cbbda6a

Browse files
pmerrisonclaude
andcommitted
refactor(calm-explorer): update workspace and CI configuration
- Rename workspace from calm-visualizer to experimental/calm-explorer - Update root package.json scripts (build:calm-explorer, test:calm-explorer, lint:calm-explorer) - Rename GitHub workflow from build-calm-visualizer.yml to build-calm-explorer.yml - Update workflow to reference experimental/calm-explorer workspace path 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent f6da060 commit cbbda6a

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/build-calm-visualizer.yml renamed to .github/workflows/build-calm-explorer.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build CALM Visualizer
1+
name: Build CALM Explorer
22

33
permissions:
44
contents: read
@@ -12,8 +12,8 @@ on:
1212
- 'main'
1313

1414
jobs:
15-
calm-visualizer:
16-
name: Build, Test, and Lint CALM Visualizer
15+
calm-explorer:
16+
name: Build, Test, and Lint CALM Explorer
1717
runs-on: ubuntu-latest
1818

1919
steps:
@@ -29,10 +29,10 @@ jobs:
2929
run: npm ci
3030

3131
- name: Lint Module
32-
run: npm run lint --workspace=calm-visualizer
32+
run: npm run lint --workspace=experimental/calm-explorer
3333

3434
- name: Build workspace
35-
run: npm run build --workspace=calm-visualizer
35+
run: npm run build --workspace=experimental/calm-explorer
3636

3737
- name: Run tests
38-
run: npm run test:run --workspace=calm-visualizer
38+
run: npm run test:run --workspace=experimental/calm-explorer

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"docs",
1212
"calm-hub-ui",
1313
"calm-plugins/vscode",
14-
"calm-visualizer"
14+
"experimental/calm-explorer"
1515
],
1616
"scripts": {
1717
"build": "npm run build --workspaces --if-present",
@@ -36,9 +36,9 @@
3636
"link:cli": "npm link --workspace cli",
3737
"calm-hub-ui:run": "npm run start --workspace calm-hub-ui",
3838
"calm-hub-ui:prod": "npm run prod --workspace calm-hub-ui",
39-
"build:calm-visualizer": "npm run build --workspace calm-visualizer",
40-
"test:calm-visualizer": "npm run test:run --workspace calm-visualizer",
41-
"lint:calm-visualizer": "npm run lint --workspace calm-visualizer",
39+
"build:calm-explorer": "npm run build --workspace experimental/calm-explorer",
40+
"test:calm-explorer": "npm run test:run --workspace experimental/calm-explorer",
41+
"lint:calm-explorer": "npm run lint --workspace experimental/calm-explorer",
4242
"prepare": "husky"
4343
},
4444
"devDependencies": {

0 commit comments

Comments
 (0)