Skip to content

Commit

Permalink
Merge 637bb6a into 02f4fa8
Browse files Browse the repository at this point in the history
  • Loading branch information
Alorel committed Oct 16, 2023
2 parents 02f4fa8 + 637bb6a commit d86d199
Show file tree
Hide file tree
Showing 33 changed files with 4,367 additions and 20,390 deletions.
19 changes: 0 additions & 19 deletions .babelrc.legacy

This file was deleted.

17 changes: 0 additions & 17 deletions .babelrc.new

This file was deleted.

5 changes: 3 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,12 @@ module.exports = {
],
root: true,
parserOptions: {
project: require('path').join(__dirname, 'tsconfig.json')
project: './tsconfig.test.json',
},
rules: {
'@typescript-eslint/consistent-type-imports': ['error', {prefer: 'type-imports'}],
'max-classes-per-file': 'off',
'no-duplicate-imports': 'off',
'prefer-rest-params': 'off',
'consistent-return': 'off',
}
};
6 changes: 6 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# These are supported funding model platforms

github:
- Alorel
custom:
- "https://paypal.me/alorel"
18 changes: 18 additions & 0 deletions .github/actions/init-node/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Set up npm
description: Set up npm and install dependencies
runs:
using: composite
steps:
- uses: actions/setup-node@v3
name: Set up node
with:
node-version-file: .nvmrc
cache: npm
registry-url: https://npm.pkg.github.com
always-auth: true

- name: Install dependencies
shell: bash
run: npm ci
env:
NODE_AUTH_TOKEN: ${{ github.token }}
24 changes: 24 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: "github-actions" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "daily"
commit-message:
prefix: deps
prefix-development: "deps(dev)"
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "daily"
commit-message:
prefix: deps
prefix-development: "deps(dev)"
ignore:
- dependency-name: "*"
update-types:
- version-update:semver-minor
- version-update:semver-patch
Loading

0 comments on commit d86d199

Please sign in to comment.