Skip to content

Commit

Permalink
fix: Clean up a few things
Browse files Browse the repository at this point in the history
  • Loading branch information
sapegin committed Jul 26, 2024
1 parent c6affe2 commit 52f5ae8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"type": "module",
"exports": "./out/index.js",
"files": [
"out",
"out/*.js",
"terms.jsonc"
],
"scripts": {
Expand All @@ -42,6 +42,7 @@
"devDependencies": {
"@textlint/ast-node-types": "^14.0.4",
"@textlint/types": "^14.0.4",
"@types/lodash": "^4.17.7",
"eslint": "^9.7.0",
"eslint-config-tamia": "^9.1.8",
"husky": "^9.1.2",
Expand All @@ -52,7 +53,6 @@
"vitest": "^2.0.4"
},
"dependencies": {
"@types/lodash": "^4.17.7",
"lodash": "^4.17.21",
"strip-json-comments": "^5.0.1",
"textlint-rule-helper": "^2.3.1"
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import fs from 'node:fs';
import { createRequire } from 'node:module';
import stripJsonComments from 'strip-json-comments';
import { RuleHelper } from 'textlint-rule-helper';
import { upperFirst } from 'lodash';
import upperFirst from 'lodash/upperFirst.js';
import type { TxtNode, TxtNodeType } from '@textlint/ast-node-types';
import type {
TextlintFixableRuleModule,
Expand Down

0 comments on commit 52f5ae8

Please sign in to comment.