Skip to content

Commit 6419ca1

Browse files
committed
New distribution folder introduced
1 parent 49efae2 commit 6419ca1

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
.idea/
22
.vscode/
33
node_modules/
4-
out/
54
docs/
65
coverage/
76
dist/

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "jira.js",
3-
"version": "4.1.1-dev20250317192602",
3+
"version": "5.0.0",
44
"description": "A comprehensive JavaScript/TypeScript library designed for both Node.JS and browsers, facilitating seamless interaction with the Atlassian Jira API.",
5-
"main": "out/index.js",
6-
"types": "out/index.d.ts",
5+
"main": "./dist/index.js",
6+
"types": "./dist/index.d.ts",
77
"repository": "https://github.com/MrRefactoring/jira.js.git",
88
"author": "Vladislav Tupikin <vladislav.tupikin@icloud.com>",
99
"license": "MIT",
@@ -18,6 +18,12 @@
1818
"client",
1919
"library"
2020
],
21+
"exports": {
22+
".": {
23+
"require": "./dist/index.js",
24+
"types": "./dist/index.d.ts"
25+
}
26+
},
2127
"scripts": {
2228
"build": "tsc",
2329
"prettier": "prettier --write src",

0 commit comments

Comments
 (0)