You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 22, 2022. It is now read-only.
I downloaded zip2zim into empty foler and ran npm i && npm start. Then it gave me the following error after installing node modules:
> [email protected] start
> npm run build && node_modules/.bin/pm2 reload ecosystem.config.js
> [email protected] build
> ./node_modules/typescript/bin/tsc
"." не является внутренней или внешней
командой, исполняемой программой или пакетным файлом.
Which roughly means "." is not internal or external command, program or package file.
I know very lttle about how node works but looks like it expects some command. After searching I found it in line 8 of package.json: "build": "./node_modules/typescript/bin/tsc",
I tried to replace it with "build": "npm run ./node_modules/typescript/bin/tsc",
But then it said that it cannot find the script. Then I tried "build": "npm run node_modules/typescript/bin/tsc",
But it yet again said that no script there, although the file tsc is in folder (and doesn't have any extension).
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I downloaded zip2zim into empty foler and ran
npm i && npm start
. Then it gave me the following error after installing node modules:Which roughly means
"." is not internal or external command, program or package file
.I know very lttle about how node works but looks like it expects some command. After searching I found it in line 8 of
package.json
:"build": "./node_modules/typescript/bin/tsc",
I tried to replace it with
"build": "npm run ./node_modules/typescript/bin/tsc",
But then it said that it cannot find the script. Then I tried
"build": "npm run node_modules/typescript/bin/tsc",
But it yet again said that no script there, although the file
tsc
is in folder (and doesn't have any extension).The text was updated successfully, but these errors were encountered: