Skip to content

Commit

Permalink
fix: fix pack
Browse files Browse the repository at this point in the history
  • Loading branch information
ahyiru committed Nov 5, 2023
1 parent b3484cc commit 12f87c3
Show file tree
Hide file tree
Showing 10 changed files with 61 additions and 28 deletions.
6 changes: 5 additions & 1 deletion .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
module.exports = require('@huxy/pack/config/eslint');
const configs = require('@huxy/pack/config/eslint');

module.exports = configs({
// customCfgs
});
6 changes: 5 additions & 1 deletion .stylelintrc.cjs
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
module.exports = require('@huxy/pack/config/stylelint');
const configs = require('@huxy/pack/config/stylelint');

module.exports = configs({
// customCfgs
});
6 changes: 5 additions & 1 deletion .versionrc.cjs
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
module.exports = require('@huxy/pack/config/version');
const configs = require('@huxy/pack/config/version');

module.exports = configs({
// customCfgs
});
6 changes: 5 additions & 1 deletion babel.config.cjs
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
module.exports = require('@huxy/pack/config/babel');
const configs = require('@huxy/pack/config/babel');

module.exports = configs({
// customCfgs
});
6 changes: 5 additions & 1 deletion commitlint.config.cjs
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
module.exports = require('@huxy/pack/config/commitlint');
const configs = require('@huxy/pack/config/commitlint');

module.exports = configs({
// customCfgs
});
6 changes: 5 additions & 1 deletion jest.config.cjs
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
module.exports = require('@huxy/pack/config/jest');
const configs = require('@huxy/pack/config/jest');

module.exports = configs({
// customCfgs
});
33 changes: 17 additions & 16 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,19 +49,19 @@
},
"license": "MIT",
"devDependencies": {
"@huxy/pack": "^1.4.3",
"@huxy/pack": "^1.4.6",
"husky": "^8.0.3",
"webpack-deadcode-plugin": "^0.1.17"
},
"dependencies": {
"@ant-design/icons": "^5.2.6",
"@ant-design/pro-table": "^3.13.3",
"@huxy/components": "^2.1.2",
"@huxy/components": "^2.1.3",
"@huxy/layout": "^2.1.2",
"@huxy/materials": "^1.1.0",
"@huxy/router": "^2.1.0",
"@huxy/use": "^2.1.1",
"@huxy/utils": "^2.1.8",
"@huxy/use": "^2.1.2",
"@huxy/utils": "^2.1.9",
"antd": "^5.11.0",
"echarts": "^5.4.3",
"echarts-for-react": "^3.0.2",
Expand Down
6 changes: 5 additions & 1 deletion postcss.config.cjs
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
module.exports = require('@huxy/pack/config/postcss');
const configs = require('@huxy/pack/config/postcss');

module.exports = configs({
// customCfgs
});
6 changes: 5 additions & 1 deletion prettier.config.cjs
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
module.exports = require('@huxy/pack/config/prettier');
const configs = require('@huxy/pack/config/prettier');

module.exports = configs({
// customCfgs
});

0 comments on commit 12f87c3

Please sign in to comment.