@fontoxml/fontoxml-development-tools 3.12.0-beta.1 → 3.12.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
CHANGED
|
@@ -6,7 +6,7 @@ The Fonto Development Tools are command-line tools which offer support for devel
|
|
|
6
6
|
|
|
7
7
|
### Node
|
|
8
8
|
|
|
9
|
-
The tools require [NPM](https://www.npmjs.com/get-npm) on [Node.js®](https://nodejs.org/) version 12.20.x or higher, which are freely available. An active or maintenence LTS release is recommended. After installing Node.js,
|
|
9
|
+
The tools require [NPM](https://www.npmjs.com/get-npm) on [Node.js®](https://nodejs.org/) version 12.20.x or higher, which are freely available. An active or maintenence LTS release is recommended. After installing Node.js, the latest version of the Fonto Development Tools can be installed globally on your system using the following command:
|
|
10
10
|
|
|
11
11
|
npm i -g @fontoxml/fontoxml-development-tools
|
|
12
12
|
|
|
@@ -14,13 +14,13 @@ Alternatively, the tools can be installed locally for your project using the fol
|
|
|
14
14
|
|
|
15
15
|
npm install --save-dev @fontoxml/fontoxml-development-tools
|
|
16
16
|
|
|
17
|
-
> **tip**:
|
|
17
|
+
> **tip**: Use Node Version Manager on Linux/MacOS or its Windows counterpart to install and use multiple version of Node.js on a single system. This is useful if you develop different projects with different versions of Node.js.
|
|
18
18
|
|
|
19
19
|
### Docker
|
|
20
20
|
|
|
21
|
-
Certain commands, like `review run` and `review build`, require [Docker
|
|
21
|
+
Certain commands, like `review run` and `review build`, require [Docker](https://www.docker.com/) to be installed together with the Docker Compose plugin. Please refer to the [Docker installation instructions](https://docs.docker.com/install/) and the [Compose installation instructions](https://docs.docker.com/compose/install/) to install them.
|
|
22
22
|
|
|
23
|
-
> **
|
|
23
|
+
> **note**: Please note that the Docker Compose plugin differs from the `docker-compose` standalone tool. Run `docker compose version` to verify its availability. Newer versions of Docker Desktop include the plugin by default.
|
|
24
24
|
|
|
25
25
|
## Usage
|
|
26
26
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fontoxml/fontoxml-development-tools",
|
|
3
|
-
"version": "3.12.0
|
|
3
|
+
"version": "3.12.0",
|
|
4
4
|
"lockfileVersion": 2,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@fontoxml/fontoxml-development-tools",
|
|
9
|
-
"version": "3.
|
|
9
|
+
"version": "3.12.0",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@babel/core": "7.14.6",
|
package/package.json
CHANGED
|
@@ -8,9 +8,9 @@ export default async function getAppManifest(editorPath) {
|
|
|
8
8
|
appManifest.favicon = appManifest.favicon || 'assets/images/favicon.ico';
|
|
9
9
|
appManifest.name = appManifest.name || 'Fonto Editor';
|
|
10
10
|
appManifest.supportedBrowsers = appManifest.supportedBrowsers || {
|
|
11
|
-
chrome: '
|
|
12
|
-
edge: '
|
|
13
|
-
firefox: '
|
|
11
|
+
chrome: '103',
|
|
12
|
+
edge: '103',
|
|
13
|
+
firefox: '102',
|
|
14
14
|
safari: '15',
|
|
15
15
|
};
|
|
16
16
|
return appManifest;
|
|
@@ -54,7 +54,7 @@ export default async function ensureDockerCommands(
|
|
|
54
54
|
} catch (_error) {
|
|
55
55
|
throw new res.ErrorWithSolution(
|
|
56
56
|
'Cannot run Docker Compose commands.',
|
|
57
|
-
'Please make sure Docker Compose is installed. See: https://docs.docker.com/compose/install/.'
|
|
57
|
+
'Please make sure the Docker Compose plugin is installed, which differs from the docker-compose standalone tool. See: https://docs.docker.com/compose/install/.'
|
|
58
58
|
);
|
|
59
59
|
}
|
|
60
60
|
}
|