Skip to content

Commit 032097e

Browse files
committed
#32: add zod schemas
1 parent 908ef4b commit 032097e

23 files changed

+3024
-6282
lines changed

.eslintrc

-124
This file was deleted.

.gitignore

+1-1
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

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Trello.js changelog
22

3+
### 2.0.0
4+
5+
- Any mention of telemetry has been eliminated from the project
6+
37
### 1.2.7
48

59
- [#25](https://github.com/MrRefactoring/trello.js/issues/25): `before` and `since` parameters added to `getMemberActions` endpoint.

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<div align="center">
2-
<img alt="Trello.js logo" src="https://svgshare.com/i/U4A.svg"/>
2+
<img alt="Trello.js logo" src="https://bad37fb3-cb50-4e0b-9035-a3e09e8afb3b.selstorage.ru/trello.js%2Flogo.svg"/>
33

44
<a href="https://www.npmjs.com/package/trello.js"><img alt="NPM version" src="https://img.shields.io/npm/v/trello.js.svg?maxAge=3600&style=flat-square" /></a>
55
<a href="https://www.npmjs.com/package/trello.js"><img alt="NPM downloads per month" src="https://img.shields.io/npm/dm/trello.js.svg?maxAge=3600&style=flat-square" /></a>
@@ -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

+11
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)