Skip to content

Commit ca6b17e

Browse files
committed
refactor: LazyLoadImage
1 parent c4d2545 commit ca6b17e

11 files changed

+1749
-131
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
/node_modules
1+
/node_modules
2+
/dist

package.json

+7-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
"scripts": {
77
"dev": "vite",
88
"build": "vite build",
9-
"serve": "vite preview"
9+
"serve": "vite preview",
10+
"test": "jest"
1011
},
1112
"keywords": [],
1213
"author": "",
@@ -15,13 +16,17 @@
1516
"@vitejs/plugin-vue": "^4.2.1",
1617
"eslint": "^8.40.0",
1718
"lodash-es": "^4.17.21",
19+
"mockjs": "^1.1.0",
1820
"typescript": "^5.0.4",
1921
"vite": "^4.3.5",
2022
"vue": "^3.2.47"
2123
},
2224
"devDependencies": {
25+
"@types/jest": "^29.5.1",
2326
"@types/lodash-es": "^4.17.7",
27+
"@types/mockjs": "^1.0.7",
2428
"@vitejs/plugin-vue-jsx": "^3.0.1",
25-
"@vue/babel-plugin-jsx": "^1.1.1"
29+
"@vue/babel-plugin-jsx": "^1.1.1",
30+
"jest": "^29.5.0"
2631
}
2732
}

0 commit comments

Comments
 (0)