This came up in our Discord: A Storybook setup in a library that depends on another buildable package in the monorepo. The problem? Whenever you run Storybook and change something in the buildable package, you won't see the effect right away. You need to manually rebuild it, and only then will Storybook pick up the changes.
Let me show you how we can fix this with Nx's workspace watching feature. (Demo repo included in the links at the very end.)
The Problem: Buildable Libraries and Storybook
I reproduced the setup. Here's what we're working with:

We have a Storybook library (feat-create-orders) that depends on a buildable library (ui). The buildable library is configured to point to its pre-built output in the dist folder. This means everyone consuming this library in the monorepo will point to the pre-built version rather than the source files.
Here's what the ui library's package.json looks like:
1{
2 "name": "@storybooknx/ui",
3 "version": "0.0.1",
4 "type": "module",
5 "main": "./dist/index.js",
6 "module": "./dist/index.js",
7 "types": "./dist/index.d.ts",
8 "exports": {
9 "./package.json": "./package.json",
10 ".": {
11 "@storybooknx/source": "./src/index.ts",
12 "types": "./dist/index.d.ts",
13 "import": "./dist/index.js",
14 "default": "./dist/index.js"
15 }
16 }
17}
18Notice how the main entry points point to *.js files. This means we need to keep the dist folder up-to-date whenever we make changes to the source files. Otherwise, Storybook won't reflect our changes.
The Solution: Nx Workspace Watching
Nx actually has a feature that allows you to watch files and automatically run commands when they change. You can find all the details in the Workspace Watching guide in the Nx docs.
The key is the nx watch command which lets you watch specific projects and run a command whenever a change is detected. Here's the basic syntax:
โฏ
npx nx watch --projects=@storybooknx/feat-create-orders --includeDependentProjects -- nx build-deps @storybooknx/feat-create-orders
For our Storybook setup, we need to watch all dependencies (--includeDependentProjects) of the Storybook package and rebuild them whenever something changes. This way, Storybook's Vite HMR server picks up the changes and refreshes automatically.
Setting It Up: Step by Step
To make this work, we need to configure two targets in our Storybook library's configuration. You can also follow along in my example repository.
1. The build-deps Target
This is a simple no-op target that serves as a hook point. The magic happens through its dependsOn configuration, which tells Nx to build all dependencies of the current project:
1{
2 "name": "@storybooknx/feat-create-orders",
3 "version": "0.0.1",
4 "nx": {
5 "targets": {
6 "build-deps": {
7 "dependsOn": ["^build"],
8 "executor": "nx:noop"
9 }
10 }
11 }
12}
13The ^build in dependsOn means: "build all my dependencies first." Since this is a noop executor, it won't do anything itself, but Nx will ensure all dependencies are built before this target completes.
2. The watch-deps Target
This is where the actual watching happens:
1{
2 "name": "@storybooknx/feat-create-orders",
3 "version": "0.0.1",
4 "nx": {
5 "targets": {
6 "build-deps": {
7 "dependsOn": ["^build"],
8 "executor": "nx:noop"
9 },
10 "watch-deps": {
11 "continuous": true,
12 "dependsOn": ["build-deps"],
13 "executor": "nx:run-commands",
14 "options": {
15 "command": "nx watch --projects @storybooknx/feat-create-orders --includeDependentProjects -- nx build-deps @storybooknx/feat-create-orders"
16 }
17 }
18 }
19 }
20}
21Let's break down what's happening:
continuous: true- Marks this as a long-running taskdependsOn: ["build-deps"]- Ensures dependencies are built before watching starts- The command watches the current project and all its dependencies
- When a change is detected, it runs
nx build-depswhich triggers rebuilding
3. Update the Storybook Target
Finally, we need to make the Storybook target depend on these new targets:
1{
2 "nx": {
3 "targets": {
4 "storybook": {
5 "dependsOn": ["^build", "watch-deps"]
6 },
7 "build-deps": {
8 "dependsOn": ["^build"],
9 "executor": "nx:noop"
10 },
11 "watch-deps": {
12 "continuous": true,
13 "dependsOn": ["build-deps"],
14 "executor": "nx:run-commands",
15 "options": {
16 "command": "nx watch --projects @storybooknx/feat-create-orders --includeDependentProjects -- nx build-deps @storybooknx/feat-create-orders"
17 }
18 }
19 }
20 }
21}
22Now when you run nx storybook feat-create-orders, Nx will:
- Build all dependencies (
^build) - Start the watch command in parallel (
watch-deps) - Serve Storybook
If you're using a Vite or React app with Nx, you likely already have the watch-deps target configured automatically. You can easily copy the target configuration from Nx Console! Just open the project panel, navigate to the watch-deps target, and click "Copy Target Configuration." Then paste it into your Storybook library's package.json and adjust as needed. Check the video for the details
See It in Action
Let me show you the final developer experience:
When you run:
โฏ
nx storybook feat-create-orders
You'll see the Nx terminal split into two panels:
- Top panel: Storybook dev server
- Bottom panel: The watch-deps process monitoring for changes

When you make any change in the UI package, you'll see the bottom panel running the watch-deps command update, rebuild the package and hence the Storybook Vite HMR server will pick it up and show the live result.
Watch-deps and Build-deps by Default in Nx v22
nx watch is powerful and crucial in a monorepo to maintain good DX by automatically rebuilding buildable packages. Nx already adds this to applications and other buildable packages. While recording the video (you can actually see it in the video itself), I realized this should be the default experience for Nx + Storybook.
I submitted a PR right after finishing the video, and this now ships by default with Nx v22. The power of open source!
Conclusion
Setting up automatic rebuilding for your Storybook dependencies transforms the developer experience from frustrating to seamless. No more manual rebuilds, no more stale changes - just edit your code and see it update in Storybook immediately.
The combination of Nx's workspace watching, intelligent caching, and task orchestration makes this setup not only possible but performant. Give it a try and experience the difference!
Learn More
- ๐ Nx Workspace Watching Docs
- ๐ง Storybook with Nx
- ๐ฌ Watch the Video Tutorial
- ๐ป Demo Repository
Also, make sure to check out:
- ๐ฆ X/Twitter
- ๐ผ LinkedIn
- ๐ฆ Bluesky
- ๐จโ๐ป Nx GitHub
- ๐ฌ Nx Official Discord Server
- ๐น Nx YouTube Channel
- โก Speed up your CI with Nx Cloud




