Skip to content

Commit

Permalink
Build: Update check-package for new repo structure
Browse files Browse the repository at this point in the history
  • Loading branch information
shilman committed Aug 23, 2022
1 parent 3617a62 commit 19a76d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/check-package.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const { resolve } = require('path');
const { readJSON } = require('fs-extra');

const getStorybookPackages = async () => {
const workspaceJSON = await readJSON(resolve(__dirname, '..', 'workspace.json'));
const workspaceJSON = await readJSON(resolve(__dirname, '..', 'code', 'workspace.json'));
return Object.entries(workspaceJSON.projects).map(([k, v]) => ({
location: v.root,
name: k,
Expand Down

0 comments on commit 19a76d9

Please sign in to comment.