Меню

Npm run deploy выдает ошибку

After npm run deploy i have errors like above
Repo on Github

I am trying to deploy my react-app on gh-pages on Github (create-react-app)

'gh-pages' is not recognized as an internal or external command,
operable program or batch file.
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! hello-world-4@0.1.0 deploy: `npm run build&&gh-pages -d build`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the hello-world-4@0.1.0 deploy script 'npm run build&&gh-page
s -d build'.
npm ERR! Make sure you have the latest version of node.js and npm installed.
npm ERR! If you do, this is most likely a problem with the hello-world-4 package
,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR!     npm run build&&gh-pages -d build
npm ERR! You can get information on how to open an issue for this project with:
npm ERR!     npm bugs hello-world-4
npm ERR! Or if that isn't available, you can get their info via:
npm ERR!     npm owner ls hello-world-4
npm ERR! There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR!     C:UsersjanAppDataRoamingnpm-cache_logs2017-05-12T17_55_00_56
9Z-debug.log

asked May 12, 2017 at 18:06

Lukas's user avatar

2

please install gh-pages and it ready to go

To install

npm install gh-pages

to deploy

add this to package.json

"predeploy": "npm run build",
 
"deploy": "gh-pages -d build"

and then this

npm run deploy

Kaustubh Kulkarni's user avatar

answered Dec 31, 2020 at 13:15

Vivekchauhan's user avatar

gh pages stands for GitHub Pages. It is simply a way to deploy a website via a github repo. Basically, NPM is yelling because when it attempts to run the command deploy, there is not link or reference to the line

$npm run build&&gh-pages -d build

You need make sure that gh-pages -d build is defined. A place to start would be running gh-pages --man or gh-pages --help

Brad Parks's user avatar

Brad Parks

63.9k63 gold badges254 silver badges322 bronze badges

answered May 12, 2017 at 18:18

Daniel Dwyer's user avatar

I facing the same problem I do the following command before
git push
not working. After

git push

I do the same command it works correctly.

npm install gh-pages

and deploy

npm run deploy

answered Sep 7, 2022 at 5:19

Mazharul Hasan's user avatar

so i was following a Youtube tutorial on how to deploy react apps to github , and i followed these steps:
1-npm install gh-pages —save-dev
2-created a repo in github
3-git remote add origin https://github.com/alisliim/Eurikso-Mobility-Academy.git
4- added
«homepage» : «https://github.com/alisliim/Eurikso-Mobility-Academy»
«predeploy»: «npm run build»
«deploy»: «gh-pages -d build»
in the jason file
BUT when i run the npm run deploy command it doesnt work and i get this error: This is a screen shot of the error since i couldnt copy it
Please any help is appriciated

asked Oct 18, 2020 at 10:52

Ali Slim's user avatar

Try setting «homepage»: «http://alisliim.github.io/Eurikso-Mobility-Academy»

because «homepage» means site URL and not repository URL.

from GitHub Docs:

The source files for a project site are stored in the same repository as their project. Unless you’re using a custom domain, project sites are available at http(s)://<user>.github.io/<repository> or http(s)://<organization>.github.io/<repository>.

answered Oct 18, 2020 at 22:15

Bogdan's user avatar

1

TRY THE FOLLOWING STEPS

  1. create a new github Repository
  2. Inititialize git in your project folder by running command «git init»
  3. create a .gitignore file and add your npm modules in it
  4. run command git add
  5. run command git commit -m "added files"
  6. run command git remote add origin git@github.com:username/new_repo
  7. run command git push
  8. By that all your files would have been uploaded successfully on github then you can decide to host it using heroku or any other hosting platform

If you have any issues on it, please let me know

answered Oct 18, 2020 at 11:19

coderboy's user avatar

coderboycoderboy

7032 silver badges16 bronze badges

3

so i was following a Youtube tutorial on how to deploy react apps to github , and i followed these steps:
1-npm install gh-pages —save-dev
2-created a repo in github
3-git remote add origin https://github.com/alisliim/Eurikso-Mobility-Academy.git
4- added
«homepage» : «https://github.com/alisliim/Eurikso-Mobility-Academy»
«predeploy»: «npm run build»
«deploy»: «gh-pages -d build»
in the jason file
BUT when i run the npm run deploy command it doesnt work and i get this error: This is a screen shot of the error since i couldnt copy it
Please any help is appriciated

asked Oct 18, 2020 at 10:52

Ali Slim's user avatar

Try setting «homepage»: «http://alisliim.github.io/Eurikso-Mobility-Academy»

because «homepage» means site URL and not repository URL.

from GitHub Docs:

The source files for a project site are stored in the same repository as their project. Unless you’re using a custom domain, project sites are available at http(s)://<user>.github.io/<repository> or http(s)://<organization>.github.io/<repository>.

answered Oct 18, 2020 at 22:15

Bogdan's user avatar

1

TRY THE FOLLOWING STEPS

  1. create a new github Repository
  2. Inititialize git in your project folder by running command «git init»
  3. create a .gitignore file and add your npm modules in it
  4. run command git add
  5. run command git commit -m "added files"
  6. run command git remote add origin git@github.com:username/new_repo
  7. run command git push
  8. By that all your files would have been uploaded successfully on github then you can decide to host it using heroku or any other hosting platform

If you have any issues on it, please let me know

answered Oct 18, 2020 at 11:19

coderboy's user avatar

coderboycoderboy

7032 silver badges16 bronze badges

3

Я пытаюсь развернуть приложение реагирования на страницах GitHub, но обнаружила следующую ошибку:

The build folder is ready to be deployed.
To publish it at https://jatinkumarg.github.io/personal-portfolio, run:

  npm run deploy


> personal-portfolio@0.1.0 deploy C:react-projectspersonal-portfolio
> gh-pages -d build

Cloning into 'node_modulesgh-pages.cachegit@github.com!jatinkumarg!personal-portfolio.git'...
git@github.com: Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! personal-portfolio@0.1.0 deploy: `gh-pages -d build`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the personal-portfolio@0.1.0 deploy script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR!     C:UsersjatinAppDataRoamingnpm-cache_logs2019-07-23T04_40_54_788Z-debug.log
  • Я уже настроил и протестировал мой ключ ssh, он работает нормально.
  • Существует только один удаленный URL-адрес, т.е. источник (SSH)

Это мой package.json

{
  "name": "personal-portfolio",
  "version": "0.1.0",
  "homepage": "https://jatinkumarg.github.io/personal-portfolio",
  "dependencies": {
    "jquery": "^3.4.1",
    "json-loader": "^0.5.7",
    "react": "^15.5.4",
    "react-dom": "^15.5.4"
  },
  "devDependencies": {
    "gh-pages": "^1.0.0",
    "react-scripts": "1.0.1"
  },
  "scripts": {
    "predeploy": "npm run build",
    "deploy": "gh-pages -d build",
    "start": "react-scripts start",
    "build": "react-scripts build",
    "test": "react-scripts test --env=jsdom",
    "eject": "react-scripts eject"
  }
}

На данный момент я понятия не имею, что не так. Может ли кто-нибудь помочь мне с этой проблемой?

2 ответа

Лучший ответ

Для использования страниц GitHub в частном репозитории вам понадобится план PRO.

Вы можете попробовать добавить идентификатор SSH в ~ / .ssh / config

Host github.com
  HostName github.com
  User git
  IdentityFile /Users/myusername/.ssh/my_github_ssh_private_key_registered_on_github


1

Tien Duong
23 Июл 2019 в 05:19

Это не помогло мне, но вот мое решение:

git remote set-url origin https://github.com/USERNAME/REPOSITORY_NAME.git

Вы получите smtn как это:

npm run deploy

> ravenous@0.1.0 predeploy C:Userspeterravenous
> npm run build


> ravenous@0.1.0 build C:Userspeterravenous
> react-scripts build

Creating an optimized production build...
Compiled with warnings.

./src/components/SearchBar/SearchBar.js
  Line 84:21:  The href attribute is required for an anchor to be keyboard accessible. Provide a valid, navigable address as the href value. If you cannot provide an href, but still need the element to resemble a link, use a button and change it with appropriate styles. Learn more: https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/anchor-is-valid.md  jsx-a11y/anchor-is-valid

./src/components/Business/Business.js
  Line 9:55:   Using target="_blank" without rel="noopener noreferrer" is a security risk: see https://mathiasbynens.github.io/rel-noopener  react/jsx-no-target-blank
  Line 17:21:  Using target="_blank" without rel="noopener noreferrer" is a security risk: see https://mathiasbynens.github.io/rel-noopener  react/jsx-no-target-blank

Search for the keywords to learn more about each warning.
To ignore, add // eslint-disable-next-line to the line before.

File sizes after gzip:

  40.23 KB  buildstaticjs2.c4f174a4.chunk.js
  1.76 KB   buildstaticjsmain.f787394e.chunk.js
  1.08 KB   buildstaticcssmain.551e99bf.chunk.css
  783 B     buildstaticjsruntime-main.647a42cc.js

The project was built assuming it is hosted at /personalportfolio/.
You can control this with the homepage field in your package.json.

The build folder is ready to be deployed.
To publish it at http://PetrMitin.github.io/personalportfolio , run:

  npm run deploy

Find out more about deployment here:

  bit.ly/CRA-deploy


> ravenous@0.1.0 deploy C:Userspeterravenous
> gh-pages -d build


*** Please tell me who you are.

Run

  git config --global user.email "you@example.com"
  git config --global user.name "Your Name"

to set your account's default identity.
Omit --global to set the identity only in this repository.

fatal: unable to auto-detect email address (got 'peter@LAPTOP-FRARNQJG.(none)')

npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! ravenous@0.1.0 deploy: `gh-pages -d build`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the ravenous@0.1.0 deploy script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR!     C:UserspeterAppDataRoamingnpm-cache_logs2020-01-07T23_02_19_256Z-debug.log

Если вы сделали, вы на правильном пути!

Затем передайте необходимую информацию, введя в cmd или что-то еще:

git config --global user.email "you@example.com"
git config --global user.name "Your Name"

И попробуй запустить:

npm run deploy

Я считаю, что я помог вам решить ваш вопрос.


0

Петр Митин
7 Янв 2020 в 23:39

I’m trying to deploy react app to github pages but when I run npm run deploy on the command line it gives the «npm not recognised as internal or external command error» and it says that it failed at predeploy script

I have already made necessary changes in the package.json file and also done the whole environment variables thing

It should deploy the app to github pages and not show any error

  • reactjs
  • npm
  • github-pages

asked Jun 8, 2019 at 10:54

Himanshu Goyal's user avatar

4

  • I guess that either node or npm isn’t in your PATH?

    Jun 8, 2019 at 12:05

  • Yes I think so could you please tell me how can I have it in my path

    Jun 8, 2019 at 12:49

  • It’s the first answer in the link I posted. Please keep in mind that people here love to help you, yet you have to put in some effort yourself first too!

    Jun 8, 2019 at 13:33

I’m trying to deploy react app to github pages but when I run npm run deploy on the command line it gives the «npm not recognised as internal or external command error» and it says that it failed at predeploy script

I have already made necessary changes in the package.json file and also done the whole environment variables thing

It should deploy the app to github pages and not show any error

  • reactjs
  • npm
  • github-pages

asked Jun 8, 2019 at 10:54

Himanshu Goyal's user avatar

4

  • I guess that either node or npm isn’t in your PATH?

    Jun 8, 2019 at 12:05

  • Yes I think so could you please tell me how can I have it in my path

    Jun 8, 2019 at 12:49

  • It’s the first answer in the link I posted. Please keep in mind that people here love to help you, yet you have to put in some effort yourself first too!

    Jun 8, 2019 at 13:33

I am trying to compile files with webpack and npm for my reactJS applciation.

When I run npm start, it all goes well.
When I run npm run deploy or npm run build it does not work under a windows environment. It does work under a linux environment.

Does someone have an idea why ?

My files :

package.json

{
  "license": "UNLICENSED",
  "private": true,
  "version": "1.0.0",
  "webPath": "web/",
  "nodePath": "node_modules/",
  "devDependencies": {
    "autoprefixer": "^6.3.1",
    "exports-loader": "^0.6.2",
    "grunt": "^0.4.5",
    "grunt-autoprefixer": "^3.0.3",
    "grunt-contrib-concat": "^0.5.1",
    "grunt-contrib-cssmin": "^0.14.0",
    "grunt-contrib-less": "^1.1.0",
    "grunt-contrib-uglify": "^0.11.0",
    "grunt-contrib-watch": "^0.6.1",
    "grunt-css-url-rewrite": "^0.3.5",
    "grunt-cssjoin": "^0.3.0",
    "grunt-postcss": "^0.7.1",
    "imports-loader": "^0.6.5",
    "matchdep": "^1.0.0",
    "redux-devtools": "^3.0.2",
    "redux-devtools-dock-monitor": "^1.0.1",
    "redux-devtools-log-monitor": "^1.0.4",
    "webpack-shell-plugin": "^0.4.2"
  },
  "repository": {
    "type": "git",
    "url": ""
  },
  "dependencies": {
    "babel-core": "^6.4.0",
    "babel-loader": "^6.2.1",
    "babel-plugin-transform-runtime": "^6.4.3",
    "babel-polyfill": "^6.3.14",
    "babel-preset-es2015": "^6.3.13",
    "babel-preset-react": "^6.3.13",
    "babel-preset-stage-0": "^6.3.13",
    "babel-runtime": "^6.3.19",
    "grunt-postcss": "^0.7.1",
    "history": "^1.17.0",
    "i18next": "^2.5.1",
    "isomorphic-fetch": "^2.2.1",
    "lodash": "^4.11.1",
    "radium": "^0.16.2",
    "rc-switch": "^1.4.2",
    "react": "^0.14.6",
    "react-dom": "^0.14.6",
    "react-hot-loader": "^1.3.0",
    "react-redux": "^4.1.2",
    "react-router": "^1.0.3",
    "react-router-redux": "^3.0.0",
    "redux": "^3.1.6",
    "redux-thunk": "^2.1.0",
    "selfupdate": "^1.1.0",
    "webpack": "^1.12.11",
    "webpack-dev-server": "^1.14.1",
    "whatwg-fetch": "^0.11.0"
  },
  "scripts": {
    "start": "node webpack.dev-server.js",
    "build": "webpack",
    "deploy": "NODE_ENV=production webpack -p --config webpack.production.config.js"
  }
}

webpack.config.js

var path = require('path');
var webpack = require('webpack');
var node_modules_dir = path.join(__dirname, 'node_modules');

var devFlagPlugin = new webpack.DefinePlugin({
    __DEV__: JSON.stringify(JSON.parse(process.env.DEBUG || 'false'))
});

console.log(__dirname);

var config = {
    entry: [
        'babel-polyfill',
        'webpack-dev-server/client?http://127.0.0.1:3000',
        'webpack/hot/only-dev-server',
        './app/Resources/react/app.js'
    ],
    output: {
        path: path.join(__dirname, 'web/js'),
        filename: 'bundle.js',
        publicPath: 'http://127.0.0.1:3000/static/'
    },
    debug: true,
    devtool: 'eval',
    plugins: [
        new webpack.HotModuleReplacementPlugin(),
        new webpack.NoErrorsPlugin(),
        devFlagPlugin
    ],
    module: {
        loaders: [
            {
                loaders: ["react-hot","babel-loader?plugins=transform-runtime&presets[]=es2015&presets[]=stage-0&presets[]=react"],
                test: /.js$/,
                include: path.join(__dirname, 'app/Resources/react')
            }
        ]
    }
};

module.exports = config;
/*
 new webpack.ProvidePlugin({
 'fetch': 'imports?this=>global!exports?global.fetch!whatwg-fetch'
 })
 */

webpack.dev-server.js

var webpack = require('webpack');
var WebpackDevServer = require('webpack-dev-server');
var config = require('./webpack.config');

new WebpackDevServer(webpack(config), {
    publicPath: config.output.publicPath,
    hot: true,
    historyApiFallback: true,
    quiet: false,
    noInfo: false,
    contentBase: "./assets"
}).listen(3000, 'localhost', function (err, result) {
    if (err) {
        console.log(err);
    }
    console.log('Listening at localhost:3000');
});

webpack.production.config.js

var path = require('path');
var node_modules_dir = path.resolve(__dirname, 'node_modules');

var config = {
    entry: [
        'babel-polyfill',
        './app/Resources/react/app.js'
    ],
    debug: false,
    output: {
        path: path.join(__dirname, 'web/js'),
        filename: 'bundle.js'
    },
    module: {
        loaders: [
            {
                loaders: ["babel-loader?plugins=transform-runtime&presets[]=es2015&presets[]=stage-0&presets[]=react"],
                test: /.js$/,
                include: path.join(__dirname, 'app/Resources/react')
            }
        ]
    },
    plugins: []
};

module.exports = config;

I get the following error with npm run build

Microsoft Windows [Version 10.0.10586] (c) 2015 Microsoft Corporation.
All rights reserved.

D:DiversProgrammationWebfoodmeup.dev>npm run build

FoodMeUp@1.0.0 build D:DiversProgrammationWebfoodmeup.dev
webpack

D:DiversProgrammationWebfoodmeup.dev Hash: 9cb8c898ada89430aa7c
Version: webpack 1.13.1 Time: 3353ms [0] multi main 64 bytes {0}
[built]
+ 739 hidden modules

ERROR in ./app/Resources/react/components/subscription/total.js Module
not found: Error: Cannot resolve module ‘lodash’ in
D:DiversProgrammationWebfoodmeup.devappResourcesreactcomponentssubscription
@ ./app/Resources/react/components/subscription/total.js 19:8-25

my total.js file :

import React from 'react';
import { connect } from 'react-redux';
import { updateSubscription } from '../../actions/subscription';
var _ = require('lodash');

...

I get the following error when I launch npm run deploy

D:DiversProgrammationWebfoodmeup.dev>npm run deploy

FoodMeUp@1.0.0 deploy D:DiversProgrammationWebfoodmeup.dev
NODE_ENV=production webpack -p —config webpack.production.config.js

‘NODE_ENV’ is not recognized as an internal or external command,
operable program or batch file.

npm ERR! Windows_NT 10.0.10586 npm ERR! argv
«C:Developmentnodejsnode.exe»
«C:Developmentnodejsnode_modulesnpmbinnpm-cli.js» «run»
«deploy» npm ERR! node v6.2.2 npm ERR! npm v3.9.5 npm ERR! code
ELIFECYCLE npm ERR! FoodMeUp@1.0.0 deploy: NODE_ENV=production
webpack -p --config webpack.production.config.js
npm ERR! Exit status
1 npm ERR! npm ERR! Failed at the FoodMeUp@1.0.0 deploy script
‘NODE_ENV=production webpack -p —config
webpack.production.config.js’. npm ERR! Make sure you have the latest
version of node.js and npm installed. npm ERR! If you do, this is most
likely a problem with the FoodMeUp package, npm ERR! not with npm
itself. npm ERR! Tell the author that this fails on your system: npm
ERR! NODE_ENV=production webpack -p —config
webpack.production.config.js npm ERR! You can get information on how
to open an issue for this project with: npm ERR! npm bugs FoodMeUp
npm ERR! Or if that isn’t available, you can get their info via: npm
ERR! npm owner ls FoodMeUp npm ERR! There is likely additional
logging output above.

npm ERR! Please include the following file with any support request:
npm ERR! D:DiversProgrammationWebfoodmeup.devnpm-debug.log

and my npm-debug.log

0 info it worked if it ends with ok
1 verbose cli [ 'C:\Development\nodejs\node.exe',
1 verbose cli   'C:\Development\nodejs\node_modules\npm\bin\npm-cli.js',
1 verbose cli   'run',
1 verbose cli   'deploy' ]
2 info using npm@3.9.5
3 info using node@v6.2.2
4 verbose run-script [ 'predeploy', 'deploy', 'postdeploy' ]
5 info lifecycle FoodMeUp@1.0.0~predeploy: FoodMeUp@1.0.0
6 silly lifecycle FoodMeUp@1.0.0~predeploy: no script for predeploy, continuing
7 info lifecycle FoodMeUp@1.0.0~deploy: FoodMeUp@1.0.0
8 verbose lifecycle FoodMeUp@1.0.0~deploy: unsafe-perm in lifecycle true
9 verbose lifecycle FoodMeUp@1.0.0~deploy: PATH: C:Developmentnodejsnode_modulesnpmbinnode-gyp-bin;D:DiversProgrammationWebfoodmeup.devnode_modules.bin;C:Developmentnodejs;C:img;C:ProgramDataOracleJavajavapath;C:WINDOWSsystem32;C:WINDOWS;C:WINDOWSSystem32Wbem;C:WINDOWSSystem32WindowsPowerShellv1.0;C:DevelopmentGitcmd;C:Program Files (x86)Windows LiveShared;C:Developmentwampbinphpphp7.0.0;C:Net GenerationFireFox;C:Developmentwampbinmysqlmysql5.7.9bin;C:Program Files (x86)SkypePhone;D:DiversProgrammationWebfoodmeup.devnode_modulestypescriptbin;C:Developmentnodejs;C:Developmentrubybin;C:Developmentwampbinphpphp7.0.0;C:Developmentwampbinmysqlmysql5.7.9bin;D:DiversProgrammationWebfoodmeup.devnode_modulestypescriptbin;C:img;C:UsersSébastienAppDataRoamingnpm
10 verbose lifecycle FoodMeUp@1.0.0~deploy: CWD: D:DiversProgrammationWebfoodmeup.dev
11 silly lifecycle FoodMeUp@1.0.0~deploy: Args: [ '/d /s /c',
11 silly lifecycle   'NODE_ENV=production webpack -p --config webpack.production.config.js' ]
12 silly lifecycle FoodMeUp@1.0.0~deploy: Returned: code: 1  signal: null
13 info lifecycle FoodMeUp@1.0.0~deploy: Failed to exec deploy script
14 verbose stack Error: FoodMeUp@1.0.0 deploy: `NODE_ENV=production webpack -p --config webpack.production.config.js`
14 verbose stack Exit status 1
14 verbose stack     at EventEmitter.<anonymous> (C:Developmentnodejsnode_modulesnpmlibutilslifecycle.js:245:16)
14 verbose stack     at emitTwo (events.js:106:13)
14 verbose stack     at EventEmitter.emit (events.js:191:7)
14 verbose stack     at ChildProcess.<anonymous> (C:Developmentnodejsnode_modulesnpmlibutilsspawn.js:24:14)
14 verbose stack     at emitTwo (events.js:106:13)
14 verbose stack     at ChildProcess.emit (events.js:191:7)
14 verbose stack     at maybeClose (internal/child_process.js:852:16)
14 verbose stack     at Process.ChildProcess._handle.onexit (internal/child_process.js:215:5)
15 verbose pkgid FoodMeUp@1.0.0
16 verbose cwd D:DiversProgrammationWebfoodmeup.dev
17 error Windows_NT 10.0.10586
18 error argv "C:\Development\nodejs\node.exe" "C:\Development\nodejs\node_modules\npm\bin\npm-cli.js" "run" "deploy"
19 error node v6.2.2
20 error npm  v3.9.5
21 error code ELIFECYCLE
22 error FoodMeUp@1.0.0 deploy: `NODE_ENV=production webpack -p --config webpack.production.config.js`
22 error Exit status 1
23 error Failed at the FoodMeUp@1.0.0 deploy script 'NODE_ENV=production webpack -p --config webpack.production.config.js'.
23 error Make sure you have the latest version of node.js and npm installed.
23 error If you do, this is most likely a problem with the FoodMeUp package,
23 error not with npm itself.
23 error Tell the author that this fails on your system:
23 error     NODE_ENV=production webpack -p --config webpack.production.config.js
23 error You can get information on how to open an issue for this project with:
23 error     npm bugs FoodMeUp
23 error Or if that isn't available, you can get their info via:
23 error     npm owner ls FoodMeUp
23 error There is likely additional logging output above.
24 verbose exit [ 1, true ]

0 0 голоса
Рейтинг статьи
Подписаться
Уведомить о
guest

0 комментариев
Старые
Новые Популярные
Межтекстовые Отзывы
Посмотреть все комментарии

А вот еще интересные материалы:

  • Яшка сломя голову остановился исправьте ошибки
  • Ясность цели позволяет целеустремленно добиваться намеченного исправьте ошибки
  • Ясность цели позволяет целеустремленно добиваться намеченного где ошибка
  • Npm install g jshint ошибка
  • Nonetype object is not callable ошибка