-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
090743a
commit d1c46c0
Showing
17 changed files
with
1,032 additions
and
745 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,10 +16,10 @@ | |
"name": "Hiroki Osame", | ||
"email": "[email protected]" | ||
}, | ||
"type": "module", | ||
"files": [ | ||
"dist" | ||
], | ||
"type": "module", | ||
"main": "./dist/index.cjs", | ||
"module": "./dist/index.mjs", | ||
"types": "./dist/index.d.cts", | ||
|
@@ -41,7 +41,7 @@ | |
} | ||
}, | ||
"scripts": { | ||
"lint": "eslint --cache .", | ||
"lint": "lint --cache --node --ignore-pattern tests/fixtures .", | ||
"build": "pkgroll --minify --target node12.20", | ||
"test": "pnpm build && tsx tests", | ||
"dev": "tsx watch --conditions=development tests", | ||
|
@@ -52,11 +52,11 @@ | |
"resolve-pkg-maps": "^1.0.0" | ||
}, | ||
"devDependencies": { | ||
"@pvtnbr/eslint-config": "^0.33.0", | ||
"@pvtnbr/eslint-config": "^1.0.3", | ||
"@types/node": "^18.15.10", | ||
"@yarnpkg/pnp": "3.3.1", | ||
"clean-pkg-json": "^1.2.0", | ||
"eslint": "^8.36.0", | ||
"eslint": "^8.57.0", | ||
"execa": "^8.0.1", | ||
"fs-fixture": "^1.2.0", | ||
"is-fs-case-sensitive": "^1.0.0", | ||
|
@@ -67,27 +67,5 @@ | |
"tsx": "^4.7.0", | ||
"type-fest": "^4.8.3", | ||
"typescript": "^5.0.4" | ||
}, | ||
"eslintConfig": { | ||
"extends": "@pvtnbr/eslint-config", | ||
"ignorePatterns": [ | ||
"tests/fixtures" | ||
], | ||
"overrides": [ | ||
{ | ||
"files": "tests/**/*.ts", | ||
"rules": { | ||
"@typescript-eslint/no-shadow": [ | ||
"error", | ||
{ | ||
"allow": [ | ||
"test", | ||
"describe" | ||
] | ||
} | ||
] | ||
} | ||
} | ||
] | ||
} | ||
} |
Oops, something went wrong.