Skip to content

Commit

Permalink
0.1.11
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Aug 15, 2023
1 parent 926623e commit 0df116a
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.1.11

- Bug fix

## 0.1.10

- Cleanup
Expand Down
4 changes: 3 additions & 1 deletion Source/Library/Environment.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import * as Environment from "dotenv";
import { z as Zod } from "zod";
export * as Environment from "dotenv";

Environment.config();

export const Fn = Zod.object({
Email: Zod.string().default(""),
Expand Down
1 change: 0 additions & 1 deletion Target/Library/Environment.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { z as Zod } from "zod";
export * as Environment from "dotenv";
export declare const Fn: Zod.ZodObject<{
Email: Zod.ZodDefault<Zod.ZodString>;
ID: Zod.ZodDefault<Zod.ZodString>;
Expand Down
2 changes: 1 addition & 1 deletion Target/Library/Environment.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
import{z as t}from"zod";import*as n from"dotenv";const o=t.object({Email:t.string().default(""),ID:t.string().default(""),Key:t.string().default("")});export{n as Environment,o as Fn};
import*as e from"dotenv";import{z as t}from"zod";e.config();const r=t.object({Email:t.string().default(""),ID:t.string().default(""),Key:t.string().default("")});export{r as Fn};
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "deploymentdelete",
"version": "0.1.10",
"version": "0.1.11",
"private": false,
"description": "♻️ Deletes Cloudflare deployments older than 7 days.",
"keywords": [
Expand Down

0 comments on commit 0df116a

Please sign in to comment.