Skip to content

Commit

Permalink
feat: add performance
Browse files Browse the repository at this point in the history
  • Loading branch information
Lawndlwd committed May 25, 2024
1 parent b7fe05d commit 4bb426f
Show file tree
Hide file tree
Showing 5 changed files with 2,303 additions and 1,373 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ npm install -D unused-i18n

## Configuration

Create a unused-i18n.config.json, unused-i18n.config.js, or unused-i18n.config.ts file in the root of your project. Here's an example configuration:
Create a unused-i18n.config.json or unused-i18n.config.js file in the root of your project. Here's an example configuration:

```ts
import type { Config } from 'unused-i18n'
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
{
"name": "unused-i18n",
"version": "0.1.5",
"version": "0.1.6",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/Lawndlwd/unused-i18n.git"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"bin": {
"unused-i18n": "dist/cli.cjs"
"unused-i18n": "dist/index.cjs"
},
"scripts": {
"build": "rollup -c",
Expand All @@ -21,8 +20,7 @@
},
"dependencies": {
"ansi-colors": "^4.1.3",
"commander": "^12.1.0",
"ts-node": "^9.1.1"
"commander": "^12.1.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.8",
Expand All @@ -34,6 +32,8 @@
"@vitest/coverage-istanbul": "^1.6.0",
"rollup": "^4.18.0",
"rollup-plugin-dts": "^6.1.1",
"ts-node": "^9.1.1",
"rollup-plugin-filesize": "^10.0.0",
"typescript": "^4.9.5",
"vitest": "^1.6.0"
}
Expand Down
Loading

0 comments on commit 4bb426f

Please sign in to comment.