@batijs/features 0.0.630 → 0.0.631

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 CHANGED
@@ -42,6 +42,7 @@ declare class BatiSet extends Set<Flags> {
42
42
  get hasServer(): boolean;
43
43
  get hasDatabase(): boolean;
44
44
  get hasD1(): boolean;
45
+ get hasDotEnvSecrets(): boolean;
45
46
  get hasUD(): boolean;
46
47
  /**
47
48
  * @deprecated
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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@batijs/features",
3
- "version": "0.0.630",
3
+ "version": "0.0.631",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "keywords": [],