uglify-js-minify-css-allfiles 1.3.3 → 2.0.0

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.
@@ -0,0 +1,96 @@
1
+
2
+ =============== Processing Summary ===============
3
+ Time: 08/19/2024, 21:39:36
4
+ Total files processed: 2
5
+ Files with errors: 1
6
+ Error files:
7
+ 1. test\test.js
8
+ ==================================================
9
+
10
+ =============== Processing Summary ===============
11
+ Time: 08/19/2024, 21:40:08
12
+ Total files processed: 0
13
+ Files with errors: 0
14
+ Error files:
15
+
16
+ ==================================================
17
+
18
+ =============== Processing Summary ===============
19
+ Time: 08/19/2024, 21:57:46
20
+ Total files processed: 0
21
+ Files with errors: 0
22
+ Error files:
23
+
24
+ ==================================================
25
+
26
+ =============== Processing Summary ===============
27
+ Time: 08/19/2024, 22:14:47
28
+ Total files processed: 0
29
+ Files with errors: 0
30
+ Error files:
31
+
32
+ ==================================================
33
+
34
+ =============== Processing Summary ===============
35
+ Time: 08/19/2024, 22:20:22
36
+ Total files processed: 0
37
+ Files with errors: 0
38
+ Error files:
39
+
40
+ ==================================================
41
+
42
+ =============== Processing Summary ===============
43
+ Time: 08/19/2024, 22:24:04
44
+ Total files processed: 0
45
+ Files with errors: 0
46
+ Error files:
47
+
48
+ ==================================================
49
+
50
+ =============== Processing Summary ===============
51
+ Time: 08/19/2024, 22:25:15
52
+ Total files processed: 0
53
+ Files with errors: 0
54
+ Error files:
55
+
56
+ ==================================================
57
+
58
+ =============== Processing Summary ===============
59
+ Time: 08/19/2024, 22:32:13
60
+ Total files processed: 0
61
+ Files with errors: 0
62
+ Error files:
63
+
64
+ ==================================================
65
+
66
+ =============== Processing Summary ===============
67
+ Time: 08/19/2024, 22:32:49
68
+ Total files processed: 0
69
+ Files with errors: 0
70
+ Error files:
71
+
72
+ ==================================================
73
+
74
+ =============== Processing Summary ===============
75
+ Time: 08/19/2024, 22:33:35
76
+ Total files processed: 0
77
+ Files with errors: 0
78
+ Error files:
79
+
80
+ ==================================================
81
+
82
+ =============== Processing Summary ===============
83
+ Time: 08/19/2024, 22:42:58
84
+ Total files processed: 0
85
+ Files with errors: 0
86
+ Error files:
87
+
88
+ ==================================================
89
+
90
+ =============== Processing Summary ===============
91
+ Time: 08/19/2024, 22:43:10
92
+ Total files processed: 0
93
+ Files with errors: 0
94
+ Error files:
95
+
96
+ ==================================================
package/package.json CHANGED
@@ -1,8 +1,9 @@
1
1
  {
2
2
  "name": "uglify-js-minify-css-allfiles",
3
- "version": "1.3.3",
3
+ "version": "2.0.0",
4
4
  "description": "you will be able to minify all files as same file names which is js or css",
5
5
  "main": "minify.js",
6
+ "type": "module",
6
7
  "scripts": {
7
8
  "test": "echo \"Error: no test specified\" && exit 1"
8
9
  },
@@ -37,10 +38,12 @@
37
38
  },
38
39
  "homepage": "https://github.com/oinochoe/uglify-js-minify-css-allfiles#readme",
39
40
  "dependencies": {
40
- "clean-css": "^4.2.3",
41
+ "clean-css": "^4.2.4",
42
+ "uglify-js": "^3.19.2",
41
43
  "uglify-js-es6": "^2.8.9"
42
44
  },
43
45
  "devDependencies": {
44
- "uglify-js": "github:mishoo/UglifyJS2#harmony"
46
+ "@babel/core": "^7.25.2",
47
+ "@babel/preset-env": "^7.25.3"
45
48
  }
46
49
  }
@@ -0,0 +1,9 @@
1
+ .dragon {
2
+ width: 30px;
3
+ height: 50px;
4
+ }
5
+
6
+ .dragon a {
7
+ display: block;
8
+ margin: 30px;
9
+ }
@@ -0,0 +1,3 @@
1
+ const dragon = () => {
2
+ alert('dd');
3
+ };
package/test/test.css ADDED
@@ -0,0 +1 @@
1
+ .dragon{width:30px;height:50px}.dragon a{display:block;margin:30px}
package/test/test.js ADDED
@@ -0,0 +1,26 @@
1
+ class MyPhone {
2
+ inst = '';
3
+ #brand;
4
+ static phoneType = 'smartphone';
5
+ static #counter = 0;
6
+ constructor(n) {
7
+ (this.#brand = n), MyPhone.#counter++;
8
+ }
9
+ makeCall(n) {
10
+ this.#brand;
11
+ }
12
+ static getPhoneCount() {
13
+ return MyPhone.#counter;
14
+ }
15
+ get phoneInfo() {
16
+ return this.#brand + ' ' + MyPhone.phoneType;
17
+ }
18
+ set updateBrand(n) {
19
+ this.#brand = n;
20
+ }
21
+ }
22
+ let myPhone = new MyPhone('Samsung');
23
+ myPhone.makeCall('123-456-7890'),
24
+ myPhone.phoneInfo,
25
+ (myPhone.updateBrand = 'Apple'),
26
+ MyPhone.getPhoneCount();
package/test/common.js DELETED
@@ -1 +0,0 @@
1
- var dragon=()=>{alert("dd")};
package/test/lib/comon.js DELETED
@@ -1 +0,0 @@
1
- function dragon(){console.assert("sdsfdsd")}