score:0

for those coming with yarn 127 error code problem

take a look on https://github.com/reactstrap/reactstrap/issues/711 most probably you just need to run in console yarn :)

score:1

replace your scripts values with these, and try again:

"scripts": {
    "ios": "react-native run-ios",
    "start": "node node_modules/react-native/local-cli/cli.js start",
    "test": "jest",
    "test:e2e":"npm run test",
    "test:e2e:build":"npm run build"  // this script will still break for you
},

the last two are the important ones!

you need to prefix a script command with npm run or yarn if the script references another script in your package.json.

so instead of a script calling navicotrackapp test it would call npm run test or yarn test.


note:

in you example it looks like the terminal is failing on the script navicotrackapp build. know that you do not have a build script defined so if you replace the script with npm run build it will still fail. you'll need to add a build script in if you want it to work!

"scripts": {
    "ios": "react-native run-ios",
    "start": "node node_modules/react-native/local-cli/cli.js start",
    "test": "jest",
    "build": // do something here!!!!,
    "test:e2e":"npm run test",
    "test:e2e:build":"npm run build"
},

score:1

just use https://app.netlify.com/drop to deploy manually on netlify

first run this command

npm run build 
or 
yarn run build

then drag and drop the build folder on the website above.

score:1

try this, and please take care of the spaces.

it worked for me though. i added ci= in the capital before npm run build. double-check if you did git add. , git commit -m "first commit" and git push -u origin before your final deployment.

please check this netlify application image

score:2

try below commands it works for me

  • $ npm install @ionic/app-scripts@latest --save-dev

  • $ ionic serve


Related Query

More Query from same tag