Skip to content

Commit 489bb5d

Browse files
committed
minor fixes
1 parent 8184a8e commit 489bb5d

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,16 @@ You can use it to run the tutorial locally and translate it into your language.
88

99
Windows, Unix systems and macOS are supported. For Windows, you'll need to call scripts with ".cmd" extension, that are present in the code alongside with Unix versions.
1010

11+
1112
# Installation
1213

1314
1. Install [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org).
1415

1516
These are required to update and run the project.
1617
For Windows just download and install, otherwise use standard OS install tools (packages or whatever convenient).
1718

18-
Please use Node.js 10+.
19+
**Please use Node.js 16.**
20+
You can find it at https://nodejs.org/download/release/v16.18.1/) or use [NVM](https://github.com/nvm-sh/nvm) to install multiple versions of Node.js and switch between them.
1921

2022
(Maybe later, optional) If you're going to change images, please install [ImageMagick](https://imagemagick.org/script/download.php), use packages for Linux or homebrew/macports for MacOS.
2123

dev

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
set -e
66

77
export NODE_LANG=$1
8-
export TUTORIAL_LANG=$1
8+
export TUTORIAL_LANG=$1
99
export NODE_ENV=development
1010
export ASSET_VERSIONING=query
1111
export WATCH=1
@@ -19,4 +19,3 @@ if ! [ -x "$(command -v bunyan)" ]; then
1919
fi
2020

2121
npm --silent run gulp dev | bunyan -o short -l debug
22-

edit

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,3 @@ if ! [ -x "$(command -v bunyan)" ]; then
1717
fi
1818

1919
npm --silent run -- gulp edit | bunyan -o short -l debug
20-

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,13 @@
99
"build": "cross-env NODE_PATH=./modules ./node_modules/.bin/gulp build",
1010
"gulp": "cross-env NODE_PRESERVE_SYMLINKS=1 NODE_PATH=./modules ./node_modules/.bin/gulp"
1111
},
12+
"engine": {
13+
"node": "^16"
14+
},
1215
"precommit": "NODE_ENV=development node `which gulp` pre-commit",
1316
"//": "node-xmpp-client installs for linux only",
1417
"dependencies": {
18+
"@trysound/sax": "^0.2.0",
1519
"autoprefixer": "^9",
1620
"babel-core": "^6",
1721
"babel-loader": "^7",
@@ -43,7 +47,6 @@
4347
"koa-mount": "^3",
4448
"koa-router": "^7",
4549
"koa-static": "^5",
46-
"@trysound/sax": "^0.2.0",
4750
"limax": "^2.0.0",
4851
"lodash": "*",
4952
"markdown-it": "*",

0 commit comments

Comments
 (0)