mailintel 0.2.0 → 0.2.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.
Files changed (2) hide show
  1. package/dist/cli.js +1 -1
  2. package/package.json +4 -2
package/dist/cli.js CHANGED
@@ -692,7 +692,7 @@ function formatResult(result) {
692
692
  async function main() {
693
693
  const args = parseArgs(process.argv.slice(2));
694
694
  if (args.version) {
695
- process.stdout.write("0.2.0\n");
695
+ process.stdout.write("0.2.1\n");
696
696
  return;
697
697
  }
698
698
  if (args.help || args.emails.length === 0) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mailintel",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Email domain intelligence. Takes any email address, resolves the provider, returns IMAP/SMTP connection settings. Supports custom domains via MX lookups.",
5
5
  "author": "Ahmed Atef <ahmed@atef.dev>",
6
6
  "license": "MIT",
@@ -31,10 +31,12 @@
31
31
  "build": "tsup",
32
32
  "test": "vitest run",
33
33
  "test:watch": "vitest",
34
- "prepublishOnly": "npm run build && npm run test"
34
+ "prepublishOnly": "npm run build && npm run test",
35
+ "release": "release-it"
35
36
  },
36
37
  "devDependencies": {
37
38
  "@types/node": "^20.0.0",
39
+ "release-it": "^19.2.4",
38
40
  "tsup": "^8.0.0",
39
41
  "typescript": "^5.4.0",
40
42
  "vitest": "^2.0.0"