Skip to content

Commit 41956b8

Browse files
committed
Update dependencies.
The `mocha` test suite has finally been updated to not use the deprecated modules it was using. So this fixes the warnings that were being shown when running `npm ci` due that. Fix the build with node 22. The rollup libray build needed to be changed since the `rollup-plugin-ts` package is deprecated and no longer works with node 22. Note that the `@awmottaz/prettier-plugin-void-html` now gives a warning with node 20 about an unsupported engine. However, everything still works with node 20. Also switch the output to es2022. Finally, make this the official 0.11.0 release and remove the beta subversion.
1 parent 9c9f16c commit 41956b8

14 files changed

Lines changed: 1700 additions & 4082 deletions

.stylelintrc.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ module.exports = {
1414
],
1515
'no-descending-specificity': null,
1616
'no-invalid-position-at-import-rule': null,
17-
'import-notation': 'string'
17+
'import-notation': 'string',
18+
'declaration-property-value-no-unknown': null
1819
},
1920
overrides: [
2021
{

eslint.config.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ export default [
6262
'@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_' }],
6363
'@typescript-eslint/no-explicit-any': ['error', { ignoreRestArgs: true }],
6464
'@typescript-eslint/prefer-nullish-coalescing': 'off',
65+
'@typescript-eslint/no-base-to-string': 'off',
6566

6667
'mocha/no-setup-in-describe': 'off',
6768

0 commit comments

Comments
 (0)