uview-ultra-plus 1.10.3 → 1.10.4

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/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "uview-ultra-plus",
3
- "version": "1.10.3",
3
+ "version": "1.10.4",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/"
6
6
  },
@@ -50,21 +50,6 @@ function copySource() {
50
50
  });
51
51
  }
52
52
 
53
- function copyRecursiveSync(src, dest) {
54
- if (src.includes('node_modules')) return;
55
- const exists = fs.existsSync(src);
56
- const stats = exists && fs.statSync(src);
57
- const isDirectory = exists && stats.isDirectory();
58
- if (isDirectory) {
59
- if (!fs.existsSync(dest)) fs.mkdirSync(dest);
60
- fs.readdirSync(src).forEach(childItemName => {
61
- copyRecursiveSync(path.join(src, childItemName), path.join(dest, childItemName));
62
- });
63
- } else {
64
- fs.copyFileSync(src, dest);
65
- }
66
- }
67
-
68
53
  function runRollup() {
69
54
  console.log('[Build] Running Rollup for vendors...');
70
55
  execSync('npm run rollup', { stdio: 'inherit', cwd: projectRoot });
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "uview-ultra",
3
- "version": "1.10.3",
3
+ "version": "1.10.4",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "uview-ultra",
9
- "version": "1.10.3",
9
+ "version": "1.10.4",
10
10
  "dependencies": {
11
11
  "clipboard": "^2.0.11",
12
12
  "dayjs": "^1.11.3"
@@ -2,7 +2,7 @@
2
2
  "id": "uview-ultra",
3
3
  "name": "uview-ultra",
4
4
  "displayName": "uview-ultra全面兼容uniapp-x、uniapp鸿蒙组件库。",
5
- "version": "1.10.3",
5
+ "version": "1.10.4",
6
6
  "description": "uview-ultra全面兼容uni-app/uni-app-x/鸿蒙/nvue,全面的组件和便捷的工具会让您信手拈来,如鱼得水",
7
7
  "keywords": [
8
8
  "uview",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "uview-ultra-plus",
3
- "version": "1.10.3",
3
+ "version": "1.10.4",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/"
6
6
  },