Moved to https://github.com/bashmish/open-in-editor-server
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const minimatch = require('minimatch'); | |
const paths = [ | |
'build/my-file.js', | |
'build/my-component/my-file.js', | |
'node_modules/my-file.js', | |
'node_modules/my-module/my-file.js', | |
'my-file.js', | |
'src/my-file.js', | |
'src/sub-dir/my-file.js' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
.module { | |
padding: 10px; | |
&--modfier { | |
color: red; | |
} |