Skip to content

Commit

Permalink
Merge pull request #26 from DrugsZ/feat-workbench-transform
Browse files Browse the repository at this point in the history
Feat: workbench mouseSelext
  • Loading branch information
DrugsZ authored Aug 6, 2024
2 parents e0e0c3d + d603b38 commit b47a102
Show file tree
Hide file tree
Showing 51 changed files with 2,584 additions and 2,856 deletions.
6 changes: 3 additions & 3 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
commitlint.config.js
prettier.config.js
rspack.*.js
commitlint.config.cjs
prettier.config.cjs
vite.*.js
File renamed without changes.
10 changes: 10 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,20 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<script src="//at.alicdn.com/t/c/font_4603115_2omj3ij98p9.js"></script>
<style type="text/css">
.icon {
width: 1em;
height: 1em;
vertical-align: -0.15em;
overflow: hidden;
}
</style>
</head>

<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>

</html>
20 changes: 14 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@
"version": "0.0.1",
"description": "canvas image text editor",
"main": "index.js",
"type": "module",
"scripts": {
"start": "rspack serve -c ./rspack.dev.js",
"start": "vite",
"test": "jest",
"build": "npx rspack build -c ./rspack.prod.js",
"build": "vite build",
"lint": "eslint src/",
"prepare": "husky install"
},
Expand All @@ -28,13 +29,15 @@
"devDependencies": {
"@commitlint/cli": "^17.4.1",
"@commitlint/config-conventional": "^17.4.0",
"@rspack/cli": "^0.3.12",
"@soda/friendly-errors-webpack-plugin": "^1.8.1",
"@svgr/webpack": "^8.1.0",
"@types/jest": "^29.5.12",
"@types/react": "^18.3.2",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.0.0",
"@vitejs/plugin-react": "^4.3.1",
"browserslist": "^4.23.2",
"browserslist-to-esbuild": "^2.1.1",
"css-loader": "^6.8.1",
"eslint": "^8.31.0",
"eslint-config-airbnb-base": "^15.0.0",
Expand All @@ -46,14 +49,14 @@
"jest": "^29.7.0",
"lint-staged": "^14.0.1",
"prettier": "2.8.2",
"style-loader": "^3.3.3",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"vite": "^5.3.4",
"vite-plugin-svgr": "^4.2.0",
"webpack-merge": "^5.9.0",
"webpackbar": "^5.0.2"
},
"dependencies": {
"antd": "^5.17.2",
"@swc/helpers": "0.5.12",
"classnames": "^2.5.1",
"eventemitter3": "^5.0.1",
"md5": "^2.3.0",
Expand All @@ -62,5 +65,10 @@
"react-dom": "^18.3.1",
"spark-md5": "^3.0.2",
"ts-jest": "^29.1.2"
},
"pnpm": {
"overrides": {
"@swc/helpers": "0.5.12"
}
}
}
Loading

0 comments on commit b47a102

Please sign in to comment.