Skip to content
Open
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ jobs:
run: |
if grep -q "igz-controls/" build.log; then
echo -e "\033[31mModule not found: Error: Can't resolve 'igz-controls....'.\033[0m"
echo -e "\033[33mPlease check for changes in the 'dashboard-react-controls' repository.\033[0m"
echo -e "\033[33mPlease check for missing files in 'ui/src/igz-controls/'.\033[0m"
echo "::set-output name=igz-controls-import-error::failure"
echo "::error::Module not found: Error: Can't resolve 'igz-controls"
else
Expand Down
2 changes: 1 addition & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import reactHooks from 'eslint-plugin-react-hooks'
import eslintPluginImport from 'eslint-plugin-import'

export default [
{ ignores: ['dist'] },
{ ignores: ['dist', 'src/igz-controls/nextGenComponents/**'] },
js.configs.recommended,
eslintConfigPrettier,
{
Expand Down
5 changes: 4 additions & 1 deletion jsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@
"@/*": [
"src/nextGenComponents/*"
],
"@igz-controls/*": [
"src/igz-controls/nextGenComponents/*"
],
"igz-controls/*": [
"node_modules/iguazio.dashboard-react-controls/dist/*"
"src/igz-controls/*"
]
}
}
Expand Down
Loading