After installing the main package as we need it for deploy:
npm i netlify-cli -g
Build the app with this command:
npm run buildRun this command and it will give you list of in installed packages:
code --list-extensions | xargs -L 1 echo code --install-extension
I have this packages:
code --install-extension christian-kohler.path-intellisense
| { | |
| "name": "Babel with Nodemon", | |
| "version": "1.0.0", | |
| "description": "", | |
| "main": "public/index.js", | |
| "scripts": { | |
| "start": "node ./public/index.js", | |
| "start:dev": "nodemon ./public/index.js", | |
| "clean": "rm -rf dist", | |
| "build": "npm run clean && mkdir dist && babel app -d dist --copy-files", |
| function doubleMe(name, x) { | |
| console.log('I am running ' + name); | |
| return new Promise(resolve => { | |
| setTimeout(() => { | |
| resolve(x * 2); | |
| console.log('hoooo'); | |
| }, 2000); | |
| }); | |
| } |
Composer autoloadervendor/autoload.phpphpunit.xml in the current project for the default configuration filephp.ini to make it work with PHPStorm[XDEBUG]
zend_extension = C:\xampp\php\ext\php_xdebug-2.5.4-7.1-vc14.dll
xdebug.remote_enable = true
xdebug.idekey = PHPSTORM