Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CUMULUS-3662: Update Node Dependencies to ESM Version on Dashboard #1129

Draft
wants to merge 2 commits into
base: develop
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@
"import/no-extraneous-dependencies": "off",
"import/newline-after-import": "off",
"import/no-named-as-default": "off",
"import/no-unresolved": 2, //to handle cjs node modules to esm
"import/no-commonjs": 2, //to handle cjs node modules to esm
"import/extensions": [2, "ignorePackages"], //to handle cjs node modules to esm
"lodash/import-scope": ["error", "method"],
"lodash/prefer-constant": "off",
"lodash/prefer-lodash-method": "off",
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ This version of the dashboard requires Cumulus API >= v18.2.0
`@cumulus/aws-client@18.2.0-alpha.0` to work with localstack v3.0.0
- **Snyk Security Fix**
- Upgraded axios from 1.6.0 to 1.6.8
- **CUMULUS-3662**
- Upgrade node dependencies that were CommonJS(CJS) to ECMAScript Modules(ESM)

## [v12.1.0] - 2023-10-27

Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "cumulus-dashboard",
"version": "12.1.0",
"type":"module",
"description": "A dashboard for Cumulus API",
"repository": {
"type": "git",
Expand Down