@builder.io/dev-tools 1.26.3 → 1.26.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -0
- package/cli/index.cjs +25 -25
- package/cli/index.cjs.map +4 -4
- package/core/index.cjs +1 -1
- package/core/index.mjs +1 -1
- package/node/index.cjs +1 -1
- package/node/index.mjs +1 -1
- package/package.json +1 -1
- package/server/index.cjs +4 -4
- package/server/index.mjs +4 -4
- package/types/cli/codegen.d.ts +1 -1
- package/types/cli/track.d.ts +1 -1
- package/types/tsconfig.tsbuildinfo +1 -1
package/README.md
CHANGED
|
@@ -135,3 +135,19 @@ Devtools can also be started with a CLI command, which could be useful if there
|
|
|
135
135
|
}
|
|
136
136
|
}
|
|
137
137
|
```
|
|
138
|
+
|
|
139
|
+
## Environment Variables
|
|
140
|
+
|
|
141
|
+
### BUILDER_DISABLE_AMPLITUDE
|
|
142
|
+
|
|
143
|
+
Set `BUILDER_DISABLE_AMPLITUDE=true` to disable Amplitude analytics tracking when using the devtools CLI. This is useful for privacy-conscious environments or when you want to prevent analytics data collection.
|
|
144
|
+
|
|
145
|
+
```bash
|
|
146
|
+
BUILDER_DISABLE_AMPLITUDE=true npx builder.io fusion dev
|
|
147
|
+
```
|
|
148
|
+
|
|
149
|
+
Or add it to your `.env` file:
|
|
150
|
+
|
|
151
|
+
```env
|
|
152
|
+
BUILDER_DISABLE_AMPLITUDE=true
|
|
153
|
+
```
|