Skip to content

Commit bea363f

Browse files
committed
Modernize package dependencies
1 parent 6c3c884 commit bea363f

File tree

12 files changed

+2224
-4414
lines changed

12 files changed

+2224
-4414
lines changed

.eslintrc.js

Lines changed: 0 additions & 8 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,9 @@ jobs:
1313
- uses: actions/setup-node@v6
1414
with:
1515
node-version-file: '.nvmrc'
16-
cache: 'npm'
1716
- run: npm ci
1817
- run: npm run lint
1918
- run: npm run test
2019
- run: npm run test:rules
2120
- run: npm run build:docs
22-
- run: npm pack --loglevel notice 2>&1 >/dev/null | sed -e 's/^npm notice //' && rm *.tgz
21+
- run: npm pack --dry-run --loglevel notice 2>&1 >/dev/null | sed -e 's/^npm notice //'

config.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
'use strict';
2-
31
// See https://stylelint.io/user-guide/rules/.
42
module.exports = {
53
extends: ['stylelint-config-standard-scss'],

eslint.config.mjs

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
import { defineConfig } from 'eslint/config';
2+
import js from '@eslint/js';
3+
4+
export default defineConfig([
5+
{
6+
files: ['**/*.js'],
7+
plugins: {
8+
js,
9+
},
10+
extends: ['js/recommended'],
11+
languageOptions: {
12+
globals: {
13+
require: 'readonly',
14+
module: 'readonly',
15+
},
16+
},
17+
},
18+
]);

jest.config.js

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)