Skip to content
This repository was archived by the owner on Jun 29, 2022. It is now read-only.

Commit eca0f34

Browse files
committed
fix: eslint-import-resolver-ts itself should be devDependencies
1 parent ea5954b commit eca0f34

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/nodejs.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ jobs:
4444

4545
deploy:
4646
runs-on: macOS-latest
47+
if: github.event_name == 'push' && github.ref == 'master'
4748
needs: build
4849
steps:
4950
- name: Publish Release and npm Package
50-
if: github.event_name == 'push' && github.ref == 'master' && matrix.node == '12.x'
5151
run: bash deploy.sh
5252
env:
5353
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -60,7 +60,6 @@ jobs:
6060
needs: [build, deploy]
6161
steps:
6262
- name: Code Check
63-
if: matrix.node == '12.x'
6463
run: |
6564
yarn add -D @codechecks/client @codechecks/build-size-watcher
6665
yarn codechecks

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-import-resolver-ts",
3-
"version": "0.4.1",
3+
"version": "0.4.2",
44
"description": "TypeScript .ts .tsx module resolver for `eslint-plugin-import`.",
55
"repository": "git@github.com/rx-ts/eslint-import-resolver-ts.git",
66
"author": "Alex Gorbatchev <alex.gorbatchev@gmail.com>",
@@ -37,7 +37,6 @@
3737
},
3838
"dependencies": {
3939
"debug": "^4.1.1",
40-
"eslint-import-resolver-ts": "link:.",
4140
"is-glob": "^4.0.1",
4241
"resolve": "^1.12.0",
4342
"tiny-glob": "^0.2.6",
@@ -62,6 +61,7 @@
6261
"@types/unist": "^2.0.3",
6362
"dummy.js": "link:dummy.js",
6463
"eslint": "^6.5.1",
64+
"eslint-import-resolver-ts": "link:.",
6565
"husky": "^3.0.8",
6666
"lint-staged": "^9.4.1",
6767
"npm-run-all": "^4.1.5",

0 commit comments

Comments
 (0)