@node-minify/terser 8.0.5-beta.0 → 8.0.5
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/README.md +2 -2
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<p align="center"><img src="/static/node-minify.
|
|
1
|
+
<p align="center"><img src="/static/node-minify.svg" width="348" alt="node-minify"></p>
|
|
2
2
|
|
|
3
3
|
<p align="center">A very light minifier Node.js module.</p>
|
|
4
4
|
|
|
@@ -32,7 +32,7 @@ minify({
|
|
|
32
32
|
compressor: terser,
|
|
33
33
|
input: 'foo.js',
|
|
34
34
|
output: 'bar.js',
|
|
35
|
-
callback: function(err, min) {}
|
|
35
|
+
callback: function (err, min) {}
|
|
36
36
|
});
|
|
37
37
|
```
|
|
38
38
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@node-minify/terser",
|
|
3
|
-
"version": "8.0.5
|
|
3
|
+
"version": "8.0.5",
|
|
4
4
|
"description": "terser plugin for @node-minify",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"compressor",
|
|
@@ -45,11 +45,11 @@
|
|
|
45
45
|
"prepublishOnly": "pnpm build"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@node-minify/utils": "8.0.5
|
|
48
|
+
"@node-minify/utils": "8.0.5",
|
|
49
49
|
"terser": "5.16.3"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@node-minify/types": "8.0.
|
|
52
|
+
"@node-minify/types": "8.0.5"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "920590d417916e54464d9967e0dceb8b6bb9a784"
|
|
55
55
|
}
|