@d-zero/lint-staged-config 5.0.0-dev.73 → 5.0.0-dev.83

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.
Files changed (2) hide show
  1. package/index.mjs +6 -6
  2. package/package.json +3 -3
package/index.mjs CHANGED
@@ -19,13 +19,13 @@ export default function (dir, mapping) {
19
19
 
20
20
  dir = !dir
21
21
  ? // 引数がないならカレントディレクトリ
22
- cwd
22
+ cwd
23
23
  : // 絶対パスかどうか
24
- path.isAbsolute(dir)
25
- ? // 絶対パスならそのまま
26
- dir
27
- : // 相対パスなら絶対パスに変換
28
- path.resolve(cwd, dir);
24
+ path.isAbsolute(dir)
25
+ ? // 絶対パスならそのまま
26
+ dir
27
+ : // 相対パスなら絶対パスに変換
28
+ path.resolve(cwd, dir);
29
29
 
30
30
  mapping = mapping ?? defaultMapping;
31
31
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@d-zero/lint-staged-config",
3
- "version": "5.0.0-dev.73+1b2de1c",
3
+ "version": "5.0.0-dev.83+a8a5e88",
4
4
  "description": "Configurations of lint-staged",
5
5
  "repository": "https://github.com/d-zero-dev/node-dev-env.git",
6
6
  "author": "D-ZERO Co., Ltd.",
@@ -19,7 +19,7 @@
19
19
  "types": "./types.ts"
20
20
  },
21
21
  "dependencies": {
22
- "lint-staged": "14.0.1"
22
+ "lint-staged": "15.2.0"
23
23
  },
24
- "gitHead": "1b2de1c79685b309de78778be8e0884eed9e3728"
24
+ "gitHead": "a8a5e88a681a06072ad941bc582adbd6861295ac"
25
25
  }