Skip to content

Commit

Permalink
feat: cleaner types, more correct types, the usual
Browse files Browse the repository at this point in the history
  • Loading branch information
vladfrangu committed Jun 27, 2024
1 parent a50001c commit c1b0f75
Show file tree
Hide file tree
Showing 9 changed files with 3,108 additions and 2,940 deletions.
9 changes: 9 additions & 0 deletions .prettierrc.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import sapphirePrettierConfig from '@sapphire/prettier-config';

/** @type {import('prettier').Config} */
export default {
...sapphirePrettierConfig,
trailingComma: 'all',
printWidth: 120,
experimentalTernaries: true,
};
893 changes: 0 additions & 893 deletions .yarn/releases/yarn-4.0.2.cjs

This file was deleted.

894 changes: 894 additions & 0 deletions .yarn/releases/yarn-4.3.1.cjs

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ compressionLevel: mixed

enableGlobalCache: true

nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-4.0.2.cjs

gitHooksPath: .github/hooks

nodeLinker: node-modules

plugins:
- path: .yarn/plugins/@yarnpkg/plugin-git-hooks.cjs
spec: 'https://raw.githubusercontent.com/trufflehq/yarn-plugin-git-hooks/main/bundles/%40yarnpkg/plugin-git-hooks.js'

yarnPath: .yarn/releases/yarn-4.3.1.cjs
45 changes: 22 additions & 23 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
}
},
"sideEffects": false,
"author": "Vlad Frangu <[email protected]>",
"author": "Vlad Frangu <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "eslint src tests --ext ts --fix",
Expand All @@ -40,28 +40,28 @@
"check-update": "cliff-jumper --dry-run"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@favware/cliff-jumper": "^2.2.3",
"@favware/npm-deprecate": "^1.0.7",
"@sapphire/eslint-config": "^5.0.2",
"@sapphire/eslint-config": "^5.0.5",
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"@sapphire/ts-config": "^5.0.1",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"@vitest/coverage-c8": "^0.33.0",
"@vitest/coverage-v8": "^0.34.6",
"@vitest/coverage-v8": "^1.6.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.55.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"tsup": "^8.0.1",
"typedoc": "^0.25.4",
"typedoc-plugin-mdn-links": "^3.1.6",
"typescript": "^5.3.2",
"vitest": "^0.34.6"
"eslint-plugin-prettier": "^5.1.3",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"tsup": "^8.1.0",
"typedoc": "^0.26.2",
"typedoc-plugin-mdn-links": "^3.2.1",
"typescript": "^5.5.2",
"vitest": "^1.6.0"
},
"repository": {
"type": "git",
Expand Down Expand Up @@ -102,10 +102,9 @@
"publishConfig": {
"access": "public"
},
"prettier": "@sapphire/prettier-config",
"resolutions": {
"ansi-regex": "^5.0.1",
"minimist": "^1.2.6"
},
"packageManager": "[email protected]"
"packageManager": "[email protected]",
"volta": {
"node": "20.15.0",
"yarn": "4.3.1"
}
}
Loading

0 comments on commit c1b0f75

Please sign in to comment.