@groupdocs/groupdocs.watermark 24.11.0 → 25.7.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.
- package/index.js +2 -2
- package/lib/groupdocs.watermark.js +1 -1
- package/package.json +7 -5
package/index.js
CHANGED
|
@@ -11,8 +11,8 @@ const path = require('path');
|
|
|
11
11
|
}
|
|
12
12
|
}
|
|
13
13
|
|
|
14
|
-
if (!checkFileExists(path.join(__dirname, 'lib/groupdocs-watermark-nodejs-
|
|
15
|
-
console.warn('\x1b[33m%s\x1b[0m', `File groupdocs-watermark-nodejs-
|
|
14
|
+
if (!checkFileExists(path.join(__dirname, 'lib/groupdocs-watermark-nodejs-25.6.jar'))) {
|
|
15
|
+
console.warn('\x1b[33m%s\x1b[0m', `File groupdocs-watermark-nodejs-25.6.jar not found in the lib directory.\nPlease navigate to the package directory:`);
|
|
16
16
|
console.log('\n cd node_modules/@groupdocs/groupdocs.watermark\n');
|
|
17
17
|
console.warn('\x1b[33m%s\x1b[0m', `Then download the JAR file using the command:`);
|
|
18
18
|
console.log('\n npm run postinstall\n');
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@groupdocs/groupdocs.watermark",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "25.7.0",
|
|
4
4
|
"description": "Create and apply watermarks on PDF, Word, Excel, PowerPoint, and image files, including JPG and PNG. Fast, powerful, and easy-to-use watermarking tool.",
|
|
5
5
|
"scripts": {
|
|
6
|
-
"postinstall": "curl -H 'Cache-Control:no-cache' https://releases.groupdocs.com/java/repo/com/groupdocs/groupdocs-watermark-nodejs/
|
|
6
|
+
"postinstall": "curl -H 'Cache-Control:no-cache' https://releases.groupdocs.com/java/repo/com/groupdocs/groupdocs-watermark-nodejs/25.6/groupdocs-watermark-nodejs-25.6.jar --ssl-no-revoke > lib/groupdocs-watermark-nodejs-25.6.jar"
|
|
7
7
|
},
|
|
8
8
|
"main": "index.js",
|
|
9
9
|
"keywords": [
|
|
@@ -15,7 +15,6 @@
|
|
|
15
15
|
"clean-watermark",
|
|
16
16
|
"image-watermark",
|
|
17
17
|
"text-watermark",
|
|
18
|
-
"annotation",
|
|
19
18
|
"DOC",
|
|
20
19
|
"DOCX",
|
|
21
20
|
"XLS",
|
|
@@ -36,14 +35,17 @@
|
|
|
36
35
|
"TIFF",
|
|
37
36
|
"WEBP",
|
|
38
37
|
"EMF",
|
|
39
|
-
"WMF"
|
|
38
|
+
"WMF"
|
|
40
39
|
],
|
|
41
40
|
"author": "Aspose",
|
|
42
|
-
"license": "End User License Agreement.html",
|
|
41
|
+
"license": "SEE LICENSE IN End User License Agreement.html",
|
|
43
42
|
"dependencies": {
|
|
44
43
|
"java": "^0.13.0"
|
|
45
44
|
},
|
|
46
45
|
"directories": {
|
|
47
46
|
"lib": "lib"
|
|
47
|
+
},
|
|
48
|
+
"engines": {
|
|
49
|
+
"node": ">=16 <19"
|
|
48
50
|
}
|
|
49
51
|
}
|