Skip to content

Commit

Permalink
Merge branch 'next' into 1590-reimplement-datatype-module
Browse files Browse the repository at this point in the history
  • Loading branch information
Shinigami92 committed Feb 19, 2024
2 parents bec8523 + 9882760 commit 6e66d9a
Show file tree
Hide file tree
Showing 27 changed files with 310 additions and 229 deletions.
4 changes: 0 additions & 4 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,6 @@ module.exports = defineConfig({
'unicorn/number-literal-case': 'off', // incompatible with prettier
'unicorn/prefer-ternary': 'off', // ternaries aren't always better

// TODO @Shinigami92 2023-09-23: prefer-at should be turned on when we drop support for Node 14.
'unicorn/prefer-at': 'off',
// TODO @Shinigami92 2023-09-23: prefer-string-replace-all should be turned on when we drop support for Node 14.
'unicorn/prefer-string-replace-all': 'off',
// TODO @ST-DDT 2023-10-28: The following rule should be turned on when we switch to esm.
'unicorn/prefer-top-level-await': 'off',

Expand Down
7 changes: 7 additions & 0 deletions docs/guide/upgrading_v9/2653.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
### Examples of code-upgrades that are now used

_This upgrade is an extension to_ [#2121](./2121.md)

Used Node >= v15 feature [`replaceAll`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/replaceAll).

We could hint users to use polyfill or transpile-down steps.
7 changes: 7 additions & 0 deletions docs/guide/upgrading_v9/2654.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
### Examples of code-upgrades that are now used

_This upgrade is an extension to_ [#2121](./2121.md)

Used Node >= v16.6 feature [`at`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/at).

We could hint users to use polyfill or transpile-down steps.
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -98,14 +98,14 @@
"@eslint-types/typescript-eslint": "~6.21.0",
"@eslint-types/unicorn": "~51.0.1",
"@types/markdown-it": "~13.0.7",
"@types/node": "~20.11.17",
"@types/node": "~20.11.19",
"@types/sanitize-html": "~2.11.0",
"@types/semver": "~7.5.7",
"@types/validator": "~13.11.9",
"@typescript-eslint/eslint-plugin": "~6.21.0",
"@typescript-eslint/parser": "~6.21.0",
"@vitest/coverage-v8": "~1.2.2",
"@vitest/ui": "~1.2.2",
"@typescript-eslint/eslint-plugin": "~7.0.1",
"@typescript-eslint/parser": "~7.0.1",
"@vitest/coverage-v8": "~1.3.0",
"@vitest/ui": "~1.3.0",
"@vueuse/core": "~10.7.2",
"conventional-changelog-cli": "~4.1.0",
"cypress": "~13.6.4",
Expand All @@ -114,7 +114,7 @@
"eslint-define-config": "~2.1.0",
"eslint-gitignore": "~0.1.0",
"eslint-plugin-deprecation": "~2.0.0",
"eslint-plugin-jsdoc": "~48.0.6",
"eslint-plugin-jsdoc": "~48.1.0",
"eslint-plugin-prettier": "~5.1.3",
"eslint-plugin-unicorn": "~51.0.1",
"eslint-plugin-vitest": "~0.3.22",
Expand All @@ -131,12 +131,12 @@
"typedoc": "~0.25.7",
"typescript": "~5.3.3",
"validator": "~13.11.0",
"vite": "~5.1.1",
"vite": "~5.1.3",
"vitepress": "1.0.0-rc.39",
"vitest": "~1.2.2",
"vue": "~3.4.18"
"vitest": "~1.3.0",
"vue": "~3.4.19"
},
"packageManager": "pnpm@8.15.1",
"packageManager": "pnpm@8.15.3",
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
Expand Down
Loading

0 comments on commit 6e66d9a

Please sign in to comment.