Skip to content

Commit

Permalink
fix: upgrade (dev)Dependencies (#99)
Browse files Browse the repository at this point in the history
  • Loading branch information
JounQin committed Mar 23, 2022
1 parent e7edc4f commit 2e7b4f4
Show file tree
Hide file tree
Showing 4 changed files with 3,819 additions and 3,025 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
cach: yarn
cache: yarn

- name: Install Dependencies
run: yarn --frozen-lockfile
Expand Down
48 changes: 26 additions & 22 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,15 @@
"engines": {
"node": ">=4"
},
"main": "lib/cjs",
"module": "lib",
"es2015": "lib/es2015",
"fesm5": "lib/esm",
"types": "lib",
"main": "lib/index.cjs",
"module": "lib/index.es2015.mjs",
"exports": {
"require": "./lib/index.cjs",
"import": "./lib/index.es2015.mjs",
"types": "./lib/index.d.ts"
},
"es2015": "lib/index.es2015.mjs",
"types": "lib/index.d.ts",
"files": [
"lib",
"!*.tsbuildinfo"
Expand All @@ -29,7 +33,7 @@
],
"scripts": {
"build": "run-p build:*",
"build:r": "r",
"build:r": "r -f cjs,es2015",
"build:ts": "tsc -b",
"lint": "run-p lint:*",
"lint:es": "eslint src --cache -f friendly",
Expand All @@ -52,30 +56,30 @@
"eslint-plugin-import": "*"
},
"dependencies": {
"debug": "^4.3.1",
"glob": "^7.1.7",
"is-glob": "^4.0.1",
"resolve": "^1.20.0",
"tsconfig-paths": "^3.9.0"
"debug": "^4.3.4",
"glob": "^7.2.0",
"is-glob": "^4.0.3",
"resolve": "^1.22.0",
"tsconfig-paths": "^3.14.1"
},
"devDependencies": {
"@1stg/lib-config": "^2.1.0",
"@types/debug": "^4.1.5",
"@types/glob": "^7.1.3",
"@types/is-glob": "^4.0.1",
"@types/node": "^15.6.1",
"@types/resolve": "^1.20.0",
"@types/unist": "^2.0.3",
"@1stg/lib-config": "^5.1.1",
"@types/debug": "^4.1.7",
"@types/glob": "^7.2.0",
"@types/is-glob": "^4.0.2",
"@types/node": "^17.0.22",
"@types/resolve": "^1.20.1",
"@types/unist": "^2.0.6",
"dummy.js": "link:dummy.js",
"eslint-import-resolver-typescript": "link:.",
"react": "^17.0.2",
"standard-version": "^9.3.0",
"type-coverage": "^2.17.5",
"typescript": "^4.3.2"
"standard-version": "^9.3.2",
"type-coverage": "^2.21.1",
"typescript": "^4.6.2"
},
"resolutions": {
"eslint-import-resolver-typescript": "link:.",
"prettier": "^2.3.0"
"prettier": "^2.6.0"
},
"typeCoverage": {
"atLeast": 99.28,
Expand Down
8 changes: 4 additions & 4 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import path from 'path'

import debug from 'debug'
import { sync as globSync } from 'glob'
import isGlob from 'is-glob'
import { isCore, sync, SyncOpts } from 'resolve'
import {
ConfigLoaderSuccessResult,
createMatchPath,
loadConfig,
ConfigLoaderResult,
} from 'tsconfig-paths'
import { sync as globSync } from 'glob'
import isGlob from 'is-glob'
import { isCore, sync, SyncOpts } from 'resolve'
import debug from 'debug'

const IMPORTER_NAME = 'eslint-import-resolver-typescript'

Expand Down
Loading

0 comments on commit 2e7b4f4

Please sign in to comment.