mailpit-api 1.1.0 → 1.1.1
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/package.json +3 -3
- package/tsconfig-base.json +3 -3
- package/dist/cjs/eslint.config.d.mts +0 -2
- package/dist/mjs/eslint.config.d.mts +0 -2
- /package/dist/cjs/{src/index.d.ts → index.d.ts} +0 -0
- /package/dist/cjs/{src/index.js → index.js} +0 -0
- /package/dist/mjs/{src/index.d.ts → index.d.ts} +0 -0
- /package/dist/mjs/{src/index.js → index.js} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mailpit-api",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "A NodeJS client library, written in TypeScript, to interact with the Mailpit API.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"test": "echo \"TODO: Add tests\" && exit 0",
|
|
19
19
|
"build": "rm -fr dist/* && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && ./fixup_type",
|
|
20
20
|
"pretty": "npx prettier . --write",
|
|
21
|
-
"lint": "npx eslint
|
|
21
|
+
"lint": "npx eslint --fix src"
|
|
22
22
|
},
|
|
23
23
|
"keywords": [
|
|
24
24
|
"mailpit-api",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"eslint": "^9.20.1",
|
|
44
44
|
"jest": "^29.7.0",
|
|
45
45
|
"prettier": "3.4.2",
|
|
46
|
-
"tsx": "^4.19.
|
|
46
|
+
"tsx": "^4.19.3",
|
|
47
47
|
"typescript": "^5.7.3",
|
|
48
48
|
"typescript-eslint": "^8.24.0"
|
|
49
49
|
}
|
package/tsconfig-base.json
CHANGED
|
@@ -13,13 +13,13 @@
|
|
|
13
13
|
"noFallthroughCasesInSwitch": true,
|
|
14
14
|
"pretty": true,
|
|
15
15
|
"resolveJsonModule": true,
|
|
16
|
-
"rootDir": "
|
|
16
|
+
"rootDir": "src",
|
|
17
17
|
"skipLibCheck": true,
|
|
18
18
|
"strict": true,
|
|
19
19
|
"traceResolution": false,
|
|
20
20
|
"types": ["node", "jest"]
|
|
21
21
|
},
|
|
22
22
|
"compileOnSave": false,
|
|
23
|
-
"
|
|
24
|
-
"
|
|
23
|
+
"exclude": ["node_modules", "dist", "test"],
|
|
24
|
+
"include": ["src"]
|
|
25
25
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|