Skip to content

Commit

Permalink
fix: remove unexpected dependencies after upgrading deps
Browse files Browse the repository at this point in the history
remove root cause `resolutions` field
  • Loading branch information
JounQin committed Mar 13, 2021
1 parent c5219f6 commit 458c23d
Show file tree
Hide file tree
Showing 3 changed files with 3,586 additions and 4,196 deletions.
4 changes: 3 additions & 1 deletion .renovaterc
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
{
"extends": "@1stg"
"extends": [
"@1stg"
]
}
35 changes: 20 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "remark-preset-prettier",
"version": "0.4.0",
"version": "0.4.1",
"description": "Turns off all rules that are unnecessary or might conflict with Prettier.",
"repository": "git@github.com:JounQin/remark-preset-prettier.git",
"author": "JounQin <admin@1stg.me>",
Expand All @@ -14,35 +14,40 @@
"fesm5": "lib/esm",
"types": "lib",
"files": [
"lib",
"!*.tsbuildinfo"
"!*.tsbuildinfo",
"lib"
],
"scripts": {
"build": "run-p build:*",
"build:r": "r -p",
"build:ts": "tsc -b",
"dedup": "yarn-deduplicate --strategy fewer",
"lint": "run-p lint:*",
"lint:es": "cross-env PARSER_NO_WATCH=true eslint . --cache --ext js,md,ts -f friendly",
"lint:tsc": "tsc --incremental false --noEmit",
"lint:tsc": "tsc --noEmit",
"prelint": "r",
"type-coverage": "type-coverage --cache --detail --ignore-catch --ignore-files '**/*.d.ts' --strict"
"typecov": "type-coverage"
},
"peerDependencies": {
"prettier": ">=1.0.0"
},
"devDependencies": {
"@1stg/lib-config": "^0.5.2",
"@1stg/lib-config": "^1.1.9",
"npm-run-all": "^4.1.5",
"type-coverage": "^2.7.0",
"typescript": "^3.9.3"
},
"resolutions": {
"@babel/core": "^7.8.4"
"type-coverage": "^2.16.3",
"typescript": "^4.2.3",
"yarn-deduplicate": "^3.1.0"
},
"typeCoverage": {
"atLeast": 100
},
"dependencies": {
"@babel/core": "^7.10.1"
"atLeast": 100,
"cache": true,
"detail": true,
"ignoreAsAssertion": true,
"ignoreCatch": true,
"ignoreFiles": [
"**/*.d.ts"
],
"strict": true,
"update": true
}
}

0 comments on commit 458c23d

Please sign in to comment.