@batijs/features 0.0.630 → 0.0.632
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/dist/index.d.ts +1 -0
- package/dist/index.js +3 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -115,6 +115,9 @@ var BatiSet = class extends Set {
|
|
|
115
115
|
get hasD1() {
|
|
116
116
|
return this.has("cloudflare") && (this.has("sqlite") || this.has("drizzle") || this.has("kysely"));
|
|
117
117
|
}
|
|
118
|
+
get hasDotEnvSecrets() {
|
|
119
|
+
return !this.has("cloudflare");
|
|
120
|
+
}
|
|
118
121
|
get hasUD() {
|
|
119
122
|
return this.has("cloudflare") || this.has("vercel") || this.has("netlify") || this.has("dokploy") || this.hasOneOf(this.#servers);
|
|
120
123
|
}
|