bi-element-ui 0.2.1 → 0.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.pnpmfile.cjs +11 -0
- package/lib/bi-element-ui.common.js +77382 -79867
- package/lib/bi-element-ui.css +1 -1
- package/lib/bi-element-ui.umd.js +77382 -79867
- package/lib/bi-element-ui.umd.min.js +103 -110
- package/lib/static/img/swiperBg.png +0 -0
- package/package.json +3 -14
- package/pnpm-lock.yaml +2470 -2613
- package/src/main.js +3 -2
- package/src/views/Home.vue +3 -3
- package/src/views/Layout.vue +3 -1
- package/src/views/Table.vue +4 -78
- package/src/views/showData.vue +454 -2
- package/.eslintignore +0 -2
- package/.vscode/settings.json +0 -3
package/.pnpmfile.cjs
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
module.exports = {
|
2
|
+
hooks: {
|
3
|
+
readPackage(packageJson) {
|
4
|
+
if (packageJson.dependencies && packageJson.dependencies['bin-wrapper']) {
|
5
|
+
console.log('当前依赖名称:', packageJson.name, '需要转化')
|
6
|
+
packageJson.dependencies['bin-wrapper'] = 'npm:bin-wrapper-china'
|
7
|
+
}
|
8
|
+
return packageJson
|
9
|
+
}
|
10
|
+
}
|
11
|
+
}
|