@slango.configs/lint-staged 1.1.0 → 1.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,4 @@
1
+
2
+ > @slango.configs/lint-staged@1.1.2 lint /home/runner/work/slango/slango/configs/lint-staged
3
+ > eslint . --max-warnings 0
4
+
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @slango.configs/lint-staged
2
2
 
3
+ ## 1.1.2
4
+
5
+ ### Patch Changes
6
+
7
+ - c73ab09: Dependencies bump
8
+
9
+ ## 1.1.1
10
+
11
+ ### Patch Changes
12
+
13
+ - 0393a4b: Fixed issue with vitest
14
+
3
15
  ## 1.1.0
4
16
 
5
17
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@slango.configs/lint-staged",
3
- "version": "1.1.0",
3
+ "version": "1.1.2",
4
4
  "private": false,
5
5
  "description": "Slango lint-staged configs",
6
6
  "type": "module",
@@ -11,11 +11,11 @@
11
11
  "deepmerge": "4.3.1"
12
12
  },
13
13
  "peerDependencies": {
14
- "lint-staged": "^16.1.4"
14
+ "lint-staged": "^16.1.6"
15
15
  },
16
16
  "devDependencies": {
17
- "eslint": "9.32.0",
18
- "@slango.configs/eslint": "1.0.26"
17
+ "eslint": "9.34.0",
18
+ "@slango.configs/eslint": "1.1.4"
19
19
  },
20
20
  "scripts": {
21
21
  "lint": "eslint . --max-warnings 0",
package/src/commands.js CHANGED
@@ -6,6 +6,6 @@ export const eslintFix =
6
6
  // This is a function because tsc --noEmit cannot be used with files (which is the default behavior of lint-staged)
7
7
  export const typescriptBuildCheck = () => 'tsc --noEmit';
8
8
 
9
- export const vitest = (files) => ['vitest', 'related', '--run', ...files];
9
+ export const vitest = 'vitest related --run';
10
10
 
11
11
  export const fail = 'exit 1';