Skip to content

Commit 0747d25

Browse files
dependabot[bot]neilime
authored andcommitted
chore(deps-dev): bump the npm-development-dependencies group across 1 directory with 8 updates
Bumps the npm-development-dependencies group with 7 updates in the /application directory: | Package | From | To | | --- | --- | --- | | [@iconify-json/tabler](https://github.com/iconify/icon-sets) | `1.2.31` | `1.2.32` | | [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.57.1` | `8.57.2` | | [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.57.1` | `8.57.2` | | [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `4.1.0` | `4.1.1` | | [eslint](https://github.com/eslint/eslint) | `10.0.3` | `10.1.0` | | [typescript](https://github.com/microsoft/TypeScript) | `5.9.3` | `6.0.2` | | [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.57.1` | `8.57.2` | Updates `@iconify-json/tabler` from 1.2.31 to 1.2.32 - [Commits](https://github.com/iconify/icon-sets/commits) Updates `@typescript-eslint/eslint-plugin` from 8.57.1 to 8.57.2 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.57.2/packages/eslint-plugin) Updates `@typescript-eslint/parser` from 8.57.1 to 8.57.2 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.57.2/packages/parser) Updates `@vitest/coverage-v8` from 4.1.0 to 4.1.1 - [Release notes](https://github.com/vitest-dev/vitest/releases) - [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.1/packages/coverage-v8) Updates `eslint` from 10.0.3 to 10.1.0 - [Release notes](https://github.com/eslint/eslint/releases) - [Commits](eslint/eslint@v10.0.3...v10.1.0) Updates `typescript` from 5.9.3 to 6.0.2 - [Release notes](https://github.com/microsoft/TypeScript/releases) - [Commits](microsoft/TypeScript@v5.9.3...v6.0.2) Updates `typescript-eslint` from 8.57.1 to 8.57.2 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.57.2/packages/typescript-eslint) Updates `vitest` from 4.1.0 to 4.1.1 - [Release notes](https://github.com/vitest-dev/vitest/releases) - [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.1/packages/vitest) --- updated-dependencies: - dependency-name: "@iconify-json/tabler" dependency-version: 1.2.32 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-development-dependencies - dependency-name: "@typescript-eslint/eslint-plugin" dependency-version: 8.57.2 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-development-dependencies - dependency-name: "@typescript-eslint/parser" dependency-version: 8.57.2 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-development-dependencies - dependency-name: "@vitest/coverage-v8" dependency-version: 4.1.1 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-development-dependencies - dependency-name: eslint dependency-version: 10.1.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm-development-dependencies - dependency-name: typescript dependency-version: 6.0.2 dependency-type: direct:development update-type: version-update:semver-major dependency-group: npm-development-dependencies - dependency-name: typescript-eslint dependency-version: 8.57.2 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-development-dependencies - dependency-name: vitest dependency-version: 4.1.1 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-development-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Emilien Escalle <emilien.escalle@escemi.com>
1 parent dca4f15 commit 0747d25

8 files changed

Lines changed: 496 additions & 687 deletions

File tree

Makefile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ MAKEFLAGS += --silent
66
help: ## Show help message
77
@awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m\033[0m\n"} /^[$$()% a-zA-Z_-]+:.*?##/ { printf " \033[36m%-15s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST)
88

9-
include .env
10-
119
setup: ## Prepare stack to run
1210
npm --prefix application install
1311

application/.node-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
lts/*
1+
lts/*

application/eslint.config.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ import eslintPluginAstro from 'eslint-plugin-astro';
33
import globals from 'globals';
44
import js from '@eslint/js';
55
import tseslint from 'typescript-eslint';
6-
import typescriptParser from '@typescript-eslint/parser';
6+
7+
const extraFileExtensions = ['.astro'];
78

89
export default [
910
js.configs.recommended,
@@ -22,8 +23,8 @@ export default [
2223
languageOptions: {
2324
parser: astroEslintParser,
2425
parserOptions: {
25-
parser: '@typescript-eslint/parser',
26-
extraFileExtensions: ['.astro'],
26+
parser: tseslint.parser,
27+
extraFileExtensions,
2728
},
2829
},
2930
},
@@ -38,7 +39,7 @@ export default [
3839
// Script in `<script>` is assigned a virtual file name with the `.js` extension.
3940
files: ['**/*.{ts,tsx}', '**/*.astro/*.js'],
4041
languageOptions: {
41-
parser: typescriptParser,
42+
parser: tseslint.parser,
4243
},
4344
rules: {
4445
// Note: you must disable the base rule as it can report incorrect errors

0 commit comments

Comments
 (0)