Skip to content

Commit

Permalink
refactor: 重构部分代码实现, 添加临时过渡方案
Browse files Browse the repository at this point in the history
  • Loading branch information
roojay520 committed Oct 29, 2021
1 parent 5eed413 commit debccb5
Show file tree
Hide file tree
Showing 18 changed files with 8,098 additions and 873 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ module.exports = {
'prefer-destructuring': 'off',
'no-underscore-dangle': 'off',
'object-curly-newline': 'off',
'import/no-unresolved': 'error',
// 'import/no-unresolved': 'error',
'import/no-mutable-exports': 'off',
'import/prefer-default-export': 'off',
'import/no-extraneous-dependencies': 'off',
Expand All @@ -48,6 +48,7 @@ module.exports = {
'@typescript-eslint/no-unsafe-return': 'off',
'@typescript-eslint/no-throw-literal': 'off',
'@typescript-eslint/naming-convention': 'off',
'@typescript-eslint/no-unsafe-argument': 'off',
'@typescript-eslint/no-floating-promises': 'off',
'@typescript-eslint/no-unsafe-assignment': 'off',
'@typescript-eslint/no-unsafe-member-access': 'off',
Expand Down
39 changes: 21 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,37 +46,40 @@
]
},
"dependencies": {
"@bob-plug/core": "^0.1.4",
"lodash-es": "^4.17.21",
"querystring": "^0.2.1"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"@types/eslint-plugin-prettier": "^3.1.0",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"adm-zip": "^0.5.5",
"@types/lodash-es": "^4.17.5",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"adm-zip": "^0.5.9",
"commitizen": "^4.2.4",
"commitlint-config-cz": "^0.13.2",
"conventional-changelog-cli": "^2.1.1",
"cross-env": "^7.0.3",
"cz-customizable": "^6.3.0",
"esbuild": "^0.12.5",
"eslint": "^7.27.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"esbuild": "^0.13.10",
"eslint": "^8.1.0",
"eslint-config-airbnb-typescript": "^14.0.1",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"fs-extra": "^10.0.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"husky": "^7.0.4",
"lint-staged": "^11.2.6",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"rollup": "^2.50.5",
"rollup": "^2.58.3",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-esbuild": "^4.3.1",
"rollup-plugin-polyfill-node": "^0.6.2",
"typescript": "^4.3.2"
"rollup-plugin-esbuild": "^4.6.0",
"rollup-plugin-polyfill-node": "^0.7.0",
"typescript": "^4.4.4"
}
}
Loading

0 comments on commit debccb5

Please sign in to comment.