skip scan composer.lock in vendor dir (fanal#34)

This commit is contained in:
Tomoya Amachi
2019-09-25 15:32:02 +09:00
committed by Teppei Fukuda
parent a8380ab5e5
commit f9a8f80485
2 changed files with 9 additions and 2 deletions

View File

@@ -7,8 +7,9 @@ import (
)
var (
NODE_DEP_DIR = "node_modules"
PathSeparator = fmt.Sprintf("%c", os.PathSeparator)
NODE_DEP_DIR = "node_modules"
COMPOSER_DEP_DIR = "vendor"
PathSeparator = fmt.Sprintf("%c", os.PathSeparator)
)
func CacheDir() string {