@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, you can install the latest version of the Fonto Development Tools globally on your system using the following command:
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**: You can 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.
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 Community Edition](https://www.docker.com/) to be installed.
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
- > **tip**: Docker places their installers behind an unnecessary login. Use the following direct links to avoid having to create an account: [Windows installer](https://download.docker.com/win/stable/Docker%20for%20Windows%20Installer.exe), [macOS installer](https://download.docker.com/mac/stable/Docker.dmg). For Linux, Docker Community Edition is usually available through package managers.
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
 
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@fontoxml/fontoxml-development-tools",
3
- "version": "3.12.0-beta.1",
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.11.0",
9
+ "version": "3.12.0",
10
10
  "license": "MIT",
11
11
  "dependencies": {
12
12
  "@babel/core": "7.14.6",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@fontoxml/fontoxml-development-tools",
3
3
  "description": "Development tools for Fonto.",
4
- "version": "3.12.0-beta.1",
4
+ "version": "3.12.0",
5
5
  "author": "The Fonto Team",
6
6
  "license": "MIT",
7
7
  "keywords": [
@@ -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: '101',
12
- edge: '101',
13
- firefox: '100',
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
  }