Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 70a82e2a authored by Simon Chan's avatar Simon Chan
Browse files

chore: update dependencies

notably, eslint v9 requires big changes to the configuration. because eslint-plugin-import doesn't support eslint v9, it's disabled by now.
parent 5c40159b
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -98,8 +98,14 @@
    "typescript.preferences.quoteStyle": "single",
    "typescript.format.semicolons": "insert",
    "editor.formatOnSave": true,
    "eslint.nodePath": "./toolchain/eslint-config/node_modules/eslint",
    "eslint.options": {
        "overrideConfigFile": "./node_modules/@yume-chan/eslint-config/eslint.config.js"
    },
    "eslint.workingDirectories": [
        "libraries/*",
        {
            "pattern": "libraries/*",
        }
    ],
    "[javascript]": {
        "editor.defaultFormatter": "esbenp.prettier-vscode"
+3 −4
Original line number Diff line number Diff line
@@ -28,7 +28,7 @@
    "scripts": {
        "build": "tsc -b tsconfig.build.json",
        "build:watch": "tsc -b tsconfig.build.json",
        "lint": "eslint src/**/*.ts --fix"
        "lint": "run-eslint && prettier src/**/*.ts --write --tab-width 4"
    },
    "bin": {
        "tango-cli": "esm/index.js"
@@ -43,12 +43,11 @@
        "tslib": "^2.6.2"
    },
    "devDependencies": {
        "@types/node": "^20.12.4",
        "@types/node": "^20.12.7",
        "@yume-chan/eslint-config": "workspace:^1.0.0",
        "@yume-chan/tsconfig": "workspace:^1.0.0",
        "eslint": "^8.57.0",
        "jest": "^30.0.0-alpha.3",
        "prettier": "^3.2.5",
        "typescript": "^5.4.4"
        "typescript": "^5.4.5"
    }
}
+304 −286

File changed.

Preview size limit exceeded, changes collapsed.

+1 −1
Original line number Diff line number Diff line
// DO NOT MODIFY THIS FILE MANUALLY BUT DO COMMIT IT. It is generated and used by Rush.
{
  "pnpmShrinkwrapHash": "d651370cac08d2a63fc6e97af1897d0f51abd08a",
  "pnpmShrinkwrapHash": "5dfb0a8a0ad6b0505870eeb38140a9ba82571aee",
  "preferredVersionsHash": "bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"
}
+3 −0
Original line number Diff line number Diff line
@@ -10,6 +10,9 @@
//    node common/scripts/install-run-rush-pnpm.js pnpm-command
//
// For more information, see: https://rushjs.io/pages/maintainer/setup_new_repo/
//
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
// See the @microsoft/rush package's LICENSE file for details.

/******/ (() => { // webpackBootstrap
/******/ 	"use strict";
Loading