Skip to content

Commit 278d299

Browse files
committed
🚀 RELEASE: v2.0.4: Provide Type Support for Devs
1 parent 998686b commit 278d299

3 files changed

Lines changed: 8 additions & 15 deletions

File tree

.npmignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,12 @@ junkies*
88
.DS_Store
99
.eslintrc
1010
.prettierrc
11-
tsconfig.json
1211
yarn.lock
1312
*.tgz
1413
.travis.yml
1514

1615
# FOR NPM PACKAGE
17-
*.ts
16+
src/*.ts
1817
src
1918
!src/cli/assets
2019

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bulk-mail-cli",
3-
"version": "2.0.3",
3+
"version": "2.0.4",
44
"description": "Do quick, hassle-free email marketing with this small but very powerful tool! 🔥",
55
"main": "dist/src/index.js",
66
"scripts": {
@@ -17,7 +17,7 @@
1717
},
1818
"repository": {
1919
"type": "git",
20-
"url": "git+https://github.com/KumarAbhirup/bulk-mail-cli.git"
20+
"url": "git+https://github.com/adventmail/bulk-mail-cli.git"
2121
},
2222
"keywords": [
2323
"mail",
@@ -40,9 +40,9 @@
4040
"preferGlobal": true,
4141
"license": "MIT",
4242
"bugs": {
43-
"url": "https://github.com/KumarAbhirup/bulk-mail-cli/issues"
43+
"url": "https://github.com/adventmail/bulk-mail-cli/issues"
4444
},
45-
"homepage": "https://github.com/KumarAbhirup/bulk-mail-cli#readme",
45+
"homepage": "https://github.com/adventmail/bulk-mail-cli#readme",
4646
"devDependencies": {
4747
"@types/csvtojson": "^1.1.5",
4848
"@types/node": "^12.7.3",

tsconfig.json

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,6 @@
1414
"resolveJsonModule": true,
1515
"downlevelIteration": true
1616
},
17-
"include": [
18-
"src/**/*"
19-
],
20-
"exclude": [
21-
"node_modules",
22-
"**/*.spec.ts",
23-
"dist"
24-
]
25-
}
17+
"include": ["src/**/*"],
18+
"exclude": ["node_modules", "**/*.spec.ts", "dist"]
19+
}

0 commit comments

Comments
 (0)