@groupdocs/groupdocs.editor 24.10.0 → 25.4.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/README.md +0 -1
- package/index.js +2 -2
- package/lib/groupdocs.editor.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -31,7 +31,6 @@ GroupDocs.Editor for Node.js is a document editing API developed by GroupDocs, a
|
|
|
31
31
|
|
|
32
32
|
## Supported File Formats for Editing
|
|
33
33
|
|
|
34
|
-
|
|
35
34
|
GroupDocs.Editor supports editing a wide range of document formats across various categories. Below are the supported formats:
|
|
36
35
|
|
|
37
36
|
#### WordProcessing family formats
|
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-editor-nodejs-
|
|
15
|
-
console.warn('\x1b[33m%s\x1b[0m', `File groupdocs-editor-nodejs-
|
|
14
|
+
if (!checkFileExists(path.join(__dirname, 'lib/groupdocs-editor-nodejs-25.3.jar'))) {
|
|
15
|
+
console.warn('\x1b[33m%s\x1b[0m', `File groupdocs-editor-nodejs-25.3.jar not found in the lib directory.\nPlease navigate to the package directory:`);
|
|
16
16
|
console.log('\n cd node_modules/@groupdocs/groupdocs.editor\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/lib/groupdocs.editor.js
CHANGED
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@groupdocs/groupdocs.editor",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "25.4.0",
|
|
4
4
|
"description": "GroupDocs.Editor for Node.js is a document editing API developed by GroupDocs, a part of Aspose. It allows developers to integrate document editing functionality into their applications.",
|
|
5
5
|
"scripts": {
|
|
6
|
-
"postinstall": "curl -H 'Cache-Control:no-cache' https://releases.groupdocs.com/java/repo/com/groupdocs/groupdocs-editor-nodejs/
|
|
6
|
+
"postinstall": "curl -H 'Cache-Control:no-cache' https://releases.groupdocs.com/java/repo/com/groupdocs/groupdocs-editor-nodejs/25.3/groupdocs-editor-nodejs-25.3.jar > lib/groupdocs-editor-nodejs-25.3.jar"
|
|
7
7
|
},
|
|
8
8
|
"main": "index.js",
|
|
9
9
|
"keywords": [
|