Skip to content

Commit

Permalink
.mjs => .js
Browse files Browse the repository at this point in the history
  • Loading branch information
severo committed Dec 13, 2024
1 parent 8ae39ba commit ccc1266
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci_apps_hightable_demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
- 'apps/hightable-demo/**'
- '.github/workflows/_common_jobs.yml'
- '.github/workflows/ci_apps_hightable_demo.yml'
- 'eslint.config.mjs'
- 'eslint.config.js'
jobs:
ci:
uses: ./.github/workflows/_common_jobs.yml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_apps_hyparquet_demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- 'apps/hyparquet-demo/**'
- '.github/workflows/_common_jobs.yml'
- '.github/workflows/ci_apps_hyparquet_demo.yml'
- 'eslint.config.mjs'
- 'eslint.config.js'
jobs:
build-components:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_packages_cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- 'packages/cli/**'
- '.github/workflows/_common_jobs.yml'
- '.github/workflows/ci_packages_cli.yml'
- 'eslint.config.mjs'
- 'eslint.config.js'
jobs:
build-components:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_packages_components.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
- 'packages/components/**'
- '.github/workflows/_common_jobs.yml'
- '.github/workflows/ci_packages_components.yml'
- 'eslint.config.mjs'
- 'eslint.config.js'
jobs:
ci:
uses: ./.github/workflows/_common_jobs.yml
Expand Down
2 changes: 1 addition & 1 deletion apps/hightable-demo/eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import reactHooks from 'eslint-plugin-react-hooks'
import reactRefresh from 'eslint-plugin-react-refresh'
import globals from 'globals'
import tseslint from 'typescript-eslint'
import { sharedJsRules, sharedTsRules } from '../../eslint.config.mjs'
import { sharedJsRules, sharedTsRules } from '../../eslint.config.js'

export default tseslint.config(
{ ignores: ['dist', 'coverage/'] },
Expand Down
2 changes: 1 addition & 1 deletion apps/hyparquet-demo/eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import reactHooks from 'eslint-plugin-react-hooks'
import reactRefresh from 'eslint-plugin-react-refresh'
import globals from 'globals'
import tseslint from 'typescript-eslint'
import { sharedJsRules, sharedTsRules } from '../../eslint.config.mjs'
import { sharedJsRules, sharedTsRules } from '../../eslint.config.js'

export default tseslint.config(
{ ignores: ['dist', 'coverage'] },
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion packages/cli/eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import javascript from '@eslint/js'
import globals from 'globals'
import typescript from 'typescript-eslint'
import { sharedJsRules } from '../../eslint.config.mjs'
import { sharedJsRules } from '../../eslint.config.js'

export default [
{
Expand Down
2 changes: 1 addition & 1 deletion packages/components/eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import reactHooks from 'eslint-plugin-react-hooks'
import reactRefresh from 'eslint-plugin-react-refresh'
import globals from 'globals'
import tseslint from 'typescript-eslint'
import { sharedJsRules, sharedTsRules } from '../../eslint.config.mjs'
import { sharedJsRules, sharedTsRules } from '../../eslint.config.js'

export default tseslint.config(
{ ignores: ['coverage/', 'dist/', 'es/'] },
Expand Down

0 comments on commit ccc1266

Please sign in to comment.