Skip to content
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/[email protected]` 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