Skip to content

Commit f871192

Browse files
committed
32: add zod schemas
1 parent 3ea6d5d commit f871192

23 files changed

+3008
-7278
lines changed

.eslintrc

Lines changed: 0 additions & 124 deletions
This file was deleted.

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.idea/
2-
out/
2+
dist/
33
node_modules/
44
coverage/
55
docs/

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Trello.js changelog
22

3+
### 2.0.0
4+
5+
- Any mention of telemetry has been eliminated from the project
6+
- todo add full changelog
7+
38
### v1.2.8 (2025-04-21)
49

510
- Fixes

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Usability, consistency, and performance are key focuses of trello.js, and it als
2626

2727
## Installation
2828

29-
**Node.js 10.0.0 or newer is required.**
29+
**Node.js 20.0.0 or newer is required.**
3030

3131
Install with the npm:
3232

eslint.config.mjs

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import { defineConfig } from "eslint/config";
2+
import globals from "globals";
3+
import js from "@eslint/js";
4+
import tseslint from "typescript-eslint";
5+
6+
export default defineConfig([
7+
{ files: ["**/*.{js,mjs,cjs,ts}"] },
8+
{ files: ["**/*.{js,mjs,cjs,ts}"], languageOptions: { globals: {...globals.browser, ...globals.node} } },
9+
{ files: ["**/*.{js,mjs,cjs,ts}"], plugins: { js }, extends: ["js/recommended"] },
10+
tseslint.configs.recommended,
11+
]);

0 commit comments

Comments
 (0)