Skip to content

Commit

Permalink
pacjages update
Browse files Browse the repository at this point in the history
  • Loading branch information
droganov committed Sep 29, 2024
1 parent 7a1e32d commit e6eb6d2
Show file tree
Hide file tree
Showing 6 changed files with 575 additions and 810 deletions.
14 changes: 7 additions & 7 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
import { fixupConfigRules } from '@eslint/compat'
import { FlatCompat } from '@eslint/eslintrc'
import js from '@eslint/js'
import loguxTsConfig from '@logux/eslint-config/ts'
import path from 'node:path'
import { fileURLToPath } from 'node:url'
import js from '@eslint/js'
import { FlatCompat } from '@eslint/eslintrc'
import ts from 'typescript-eslint'
import loguxTsConfig from '@logux/eslint-config/ts'
import { fixupConfigRules } from '@eslint/compat'

const __filename = fileURLToPath(import.meta.url)
const __dirname = path.dirname(__filename)
const compat = new FlatCompat({
allConfig: js.configs.all,
baseDirectory: __dirname,
recommendedConfig: js.configs.recommended,
allConfig: js.configs.all,
})

export default fixupConfigRules([
...loguxTsConfig,
...ts.configs.recommended,
...compat.extends('next/core-web-vitals'),
{
ignores: [],
files: ['**/*.ts?(x)'],
ignores: [],
},
{
rules: {
'import/extensions': 'off',
'prefer-let/prefer-let': 'off',
'prefer-const': 'error',
'prefer-let/prefer-let': 'off',
},
},
])
3 changes: 3 additions & 0 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ lf:
p:
pnpm run prettify

s:
pnpm run start

t:
pnpm run test:watch

Expand Down
45 changes: 23 additions & 22 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,51 +20,52 @@
"dependencies": {
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@next/mdx": "^14.2.8",
"@next/mdx": "^14.2.13",
"@tailwindcss/typography": "^0.5.15",
"@yobta/stores": "0.3.2",
"@yobta/ui": "^0.0.51",
"@yobta/validator": "^0.1.6",
"@yobta/validator": "^1.0.0",
"@yobta/validator-react": "^0.0.2",
"clsx": "^2.1.1",
"lodash": "^4.17.21",
"next": "^14.2.8",
"next": "^14.2.13",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-use": "^17.5.1",
"sass": "^1.78.0",
"typescript-eslint": "^8.4.0",
"webpack": "^5.94.0"
"sass": "^1.79.4",
"typescript-eslint": "^8.7.0",
"webpack": "^5.95.0"
},
"devDependencies": {
"@eslint/compat": "^1.1.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.1",
"@eslint/js": "^9.11.1",
"@logux/eslint-config": "^53.4.0",
"@types/lodash": "^4.17.7",
"@types/lodash": "^4.17.9",
"@types/mdx": "^2.0.13",
"@types/node": "22.5.4",
"@types/react": "18.3.5",
"@types/node": "22.7.4",
"@types/react": "18.3.10",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"@vitest/coverage-v8": "^2.0.5",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"@vitest/coverage-v8": "^2.1.1",
"autoprefixer": "^10.4.20",
"c8": "^10.1.2",
"dotenv": "^16.4.5",
"eslint": "9.9.1",
"eslint-config-next": "14.2.8",
"eslint": "9.11.1",
"eslint-config-next": "14.2.13",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-n": "^17.10.2",
"eslint-plugin-perfectionist": "^3.4.0",
"eslint-plugin-n": "^17.10.3",
"eslint-plugin-perfectionist": "^3.7.0",
"eslint-plugin-prefer-let": "^4.0.0",
"eslint-plugin-promise": "^7.1.0",
"happy-dom": "^15.7.3",
"postcss": "^8.4.45",
"happy-dom": "^15.7.4",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"styled-jsx-plugin-postcss": "^4.0.1",
"tailwindcss": "^3.4.10",
"typescript": "5.5.4",
"vitest": "^2.0.5"
"tailwindcss": "^3.4.13",
"typescript": "5.6.2",
"vitest": "^2.1.1"
}
}
Loading

0 comments on commit e6eb6d2

Please sign in to comment.