Skip to content

Commit

Permalink
Refactor project structure and update dependencies
Browse files Browse the repository at this point in the history
- Removed package-lock.json from version control.
- Updated .gitignore to include package-lock.json.
- Updated package.json to:
  - Change lint script to target the src directory.
  - Upgrade @favware/rollup-type-bundler to version 4.0.0.
  - Upgrade @types/node to version 22.10.7.
  - Upgrade ESLint and related packages to version 9.18.0.
- Refactored Manager.ts to simplify player connection logic.
- Enhanced error handling in Node.ts for axios requests.
- Cleaned up unused ESLint disable comments in Utils.ts.
  • Loading branch information
SxMAbel committed Jan 21, 2025
1 parent bd2bbca commit b88989c
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 4,817 deletions.
4 changes: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
dist
node_modules
package-lock.json

.nuxt
.env
.idea
21 changes: 21 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
const eslintPlugin = require("@typescript-eslint/eslint-plugin");
const eslintParser = require("@typescript-eslint/parser");

module.exports = [
{
ignores: ["node_modules/", "dist/"],
},
{
files: ["**/*.ts"],
languageOptions: {
parser: eslintParser,
sourceType: "module",
},
plugins: {
"@typescript-eslint": eslintPlugin,
},
rules: {
...eslintPlugin.configs.recommended.rules,
},
},
];
Loading

0 comments on commit b88989c

Please sign in to comment.