-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
π·οΈ Convert to ES Modules and NodeNext (#314)
* π·οΈ Convert to ES Modules and NodeNext * π·οΈ Convert examples and tests to ESM * π§ Modify test:unit script to use vitest * π§ npm i * β Remove hard-coded leadAccountId * π¨ pnpm lint:fix * π§ Add Rollup * π§ Add `vitest.config.ts` to `tsconfig.lint.json` * π npm i --force * β¬οΈ Re-upgrade some deps --------- Co-authored-by: Vladislav Tupikin <[email protected]>
- Loading branch information
1 parent
a650eb1
commit a40e1f3
Showing
1,249 changed files
with
5,547 additions
and
5,298 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ out/ | |
docs/ | ||
coverage/ | ||
|
||
pnpm-lock.yaml | ||
yarn.lock | ||
yarn-error.log | ||
.DS_Store | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,5 +18,6 @@ | |
}, | ||
"dependencies": { | ||
"jira.js": "latest" | ||
} | ||
}, | ||
"type": "module" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
export * from './addWorklog'; | ||
export * from './createIssue'; | ||
export * from './addWorklog.js'; | ||
export * from './createIssue.js'; |
Oops, something went wrong.