Skip to content

Commit d28abbf

Browse files
authored
⬆️ Upgrade dependencies (#12)
Upgrades dependencies: `glob` patch is only library dependency; all others were dev dependencies. Applies other dev-side refactoring.
1 parent 97e04a1 commit d28abbf

File tree

10 files changed

+1941
-1740
lines changed

10 files changed

+1941
-1740
lines changed

.husky/pre-commit

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

.node-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
18
1+
20

eslint.config.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1-
import { default as connorjsConfig } from "eslint-config-connorjs";
1+
import connorjsConfig from "eslint-config-connorjs";
22

3-
const config = [
3+
export default [
44
...connorjsConfig,
55
{
66
// Ignore declaration files for ESLint because this package does not have TypeScript
77
ignores: [`**/*.d.css.ts`],
88
},
99
];
10-
11-
export default config;

husky/pre-commit

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
npx lint-staged --allow-empty
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module.exports = {
1+
export default {
22
"*.{cjs,js,json}": [`prettier -w`, `eslint -f pretty --fix`],
33
"*.{css,md,yaml,yml}": `prettier -w`,
44
};

0 commit comments

Comments
 (0)