appwrite-utils-cli 0.10.65 → 0.10.66

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 CHANGED
@@ -147,6 +147,7 @@ This updated CLI ensures that developers have robust tools at their fingertips t
147
147
 
148
148
  ## Changelog
149
149
 
150
+ - 0.10.66: Fixed `ignore` always being an empty array, if not set, so it properly ignores the defaults
150
151
  - 0.10.65: Fixed the stupid local functions not caring about the ignore string, and added `__pycache__` and `.venv` to default ignores
151
152
  - 0.10.64: Fixed `Deploy Function(s)` not ignoring things properly
152
153
  - 0.10.63: My `collectLocalFunctions` function was failing to add the `scopes` and a few others to the function, accidentally, fixed now
@@ -514,7 +514,7 @@ export class InteractiveCLI {
514
514
  events: f.events || [],
515
515
  schedule: f.schedule || "",
516
516
  timeout: f.timeout || 15,
517
- ignore: f.ignore || [],
517
+ ignore: f.ignore,
518
518
  enabled: f.enabled !== false,
519
519
  logging: f.logging !== false,
520
520
  entrypoint: f.entrypoint || "src/index.ts",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "appwrite-utils-cli",
3
3
  "description": "Appwrite Utility Functions to help with database management, data conversion, data import, migrations, and much more. Meant to be used as a CLI tool, I do not recommend installing this in frontend environments.",
4
- "version": "0.10.65",
4
+ "version": "0.10.66",
5
5
  "main": "src/main.ts",
6
6
  "type": "module",
7
7
  "repository": {
@@ -712,7 +712,7 @@ export class InteractiveCLI {
712
712
  events: f.events || [],
713
713
  schedule: f.schedule || "",
714
714
  timeout: f.timeout || 15,
715
- ignore: f.ignore || [],
715
+ ignore: f.ignore,
716
716
  enabled: f.enabled !== false,
717
717
  logging: f.logging !== false,
718
718
  entrypoint: f.entrypoint || "src/index.ts",