We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7168584 commit a742d47Copy full SHA for a742d47
package.json
@@ -7,7 +7,7 @@
7
"node": ">=18"
8
},
9
"scripts": {
10
- "build": "turbo run build --filter=!docs",
+ "build": "turbo run build build:browser --filter=!docs",
11
"dev": "turbo run dev",
12
"lint": "turbo run lint",
13
"test": "turbo run test -- --watch=false",
turbo.json
@@ -2,9 +2,13 @@
2
"$schema": "https://turbo.build/schema.json",
3
"pipeline": {
4
"build": {
5
- "outputs": ["dist/**", "storybook-static/**"],
+ "outputs": ["dist/**"],
6
"dependsOn": ["^build"]
+ "build:browser": {
+ "outputs": ["browser.js"],
+ "dependsOn": ["^build", "^build:browser"]
+ },
"lint": {
"dependsOn": ["^lint"]
14
0 commit comments