Skip to content

Commit

Permalink
chore(dependencies): update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
nfroidure committed Jul 15, 2024
1 parent 43e0d06 commit 8b5241d
Show file tree
Hide file tree
Showing 11 changed files with 5,217 additions and 7,709 deletions.
3 changes: 2 additions & 1 deletion .codeclimate.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# This file is automatically generated by a `metapak`
# module. Do not change it elsewhere, changes would
# module. Do not change it here, your changes would
# be overridden.

engines:
eslint:
enabled: true
Expand Down
5 changes: 2 additions & 3 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
*.md text eol=lf
*.html text eol=lf
*.js text eol=lf
# Enforce Unix newlines
* text=auto eol=lf
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ I'm a gentledev I:
```
<paste here>
```
If the result is lower than 18.16.0, there is
If the result is lower than 20.11.1, there is
poor chances I even have a look to it. Please,
use the last [NodeJS LTS version](https://nodejs.org/en/).

Expand Down
12 changes: 8 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# This file is automatically generated by a `metapak`
# module. Do not change it here, your changes would
# be overridden.

name: Node.js CI

on:
Expand All @@ -12,15 +16,15 @@ jobs:

strategy:
matrix:
node-version: [18.x, 20.x]
node-version: [20.x]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run pre-commit tests
Expand Down
7 changes: 7 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"recommendations": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"gruntfuggly.todo-tree"
]
}
Binary file modified DEPENDENCIES.mmd.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
> A simple module to extract architecture notes from your code.
[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/nfroidure/jsarch/blob/main/LICENSE)
[![Coverage Status](https://coveralls.io/repos/github/nfroidure/jsarch/badge.svg?branch=main)](https://coveralls.io/github/nfroidure/jsarch?branch=main)


[//]: # (::contents:start)
Expand Down
28 changes: 28 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
// @ts-check
// This file is automatically generated by a `metapak`
// module. Do not change it elsewhere, changes would
// be overridden.

import eslint from '@eslint/js';
import tseslint from 'typescript-eslint';
import eslintConfigPrettier from 'eslint-config-prettier';
import eslintPluginJest from 'eslint-plugin-jest';

export default tseslint.config(
eslint.configs.recommended,
...tseslint.configs.recommended,
{
files: ['*.test.ts'],
...eslintPluginJest.configs['flat/recommended'],
},
eslintConfigPrettier,
{
name: 'Project config',
languageOptions: {
ecmaVersion: 2018,
sourceType: 'module',
},
ignores: ['*.d.ts'],
},
);

Loading

0 comments on commit 8b5241d

Please sign in to comment.