Skip to content

Instantly share code, notes, and snippets.

View fenok's full-sized avatar

Leonid Fenko fenok

View GitHub Profile
@fenok
fenok / output
Created April 28, 2019 13:43
npx nls why @babel/parser
D:\TypeScript-Babel-Starter>npx nls why @babel/parser
npx: installed 1 in 1.813s
Path must be a string. Received undefined
npx: installed 8 in 1.994s
C:\Users\fenok\AppData\Roaming\npm-cache\_npx\11296\node_modules\nls\lib\nls
Who required @babel/parser:
babel-typescript-sample > @babel/core > @babel/helpers > @babel/template > @babel/parser@7.4.0
babel-typescript-sample > @babel/core > @babel/helpers > @babel/traverse > @babel/helper-function-name > @babel/template > @babel/parser@7.4.0
@fenok
fenok / webstorm.bat
Last active March 1, 2018 10:30 — forked from amnuts/phpstorm.bat
Add context menu to Windows 7 to open file/folder in PhpStorm
@echo off
SET WebStormPath=C:\Program Files\JetBrains\WebStorm 2017.3.4\bin\webstorm64.exe
echo Adding file entries
@reg add "HKEY_CLASSES_ROOT\*\shell\Open in WebStorm" /t REG_SZ /v "" /d "Open in WebStorm" /f
@reg add "HKEY_CLASSES_ROOT\*\shell\Open in WebStorm" /t REG_EXPAND_SZ /v "Icon" /d "%WebStormPath%,0" /f
@reg add "HKEY_CLASSES_ROOT\*\shell\Open in WebStorm\command" /t REG_SZ /v "" /d "%WebStormPath% \"%%1\"" /f
echo Adding folder entries