github.com/evanw/esbuild/internal/bundler.scanner.fs (field)

15 uses

	github.com/evanw/esbuild/internal/bundler (current package)
		bundler.go#L876: 	fs      fs.FS
		bundler.go#L895: 		fs:            fs,
		bundler.go#L1005: 		fs:                 s.fs,
		bundler.go#L1140: 			} else if s.fs.IsAbs(stdin.SourceFile) {
		bundler.go#L1143: 				stdinPath = logger.Path{Text: s.fs.Join(stdin.AbsResolveDir, stdin.SourceFile), Namespace: "file"}
		bundler.go#L1163: 	entryPointAbsResolveDir := s.fs.Cwd()
		bundler.go#L1165: 		if !s.fs.IsAbs(path) && resolver.IsPackagePath(path) {
		bundler.go#L1166: 			absPath := s.fs.Join(entryPointAbsResolveDir, path)
		bundler.go#L1167: 			dir := s.fs.Dir(absPath)
		bundler.go#L1168: 			base := s.fs.Base(absPath)
		bundler.go#L1169: 			if entries, err := s.fs.ReadDirectory(dir); err == nil {
		bundler.go#L1170: 				if entry, _ := entries.Get(base); entry != nil && entry.Kind(s.fs) == fs.FileEntry {
		bundler.go#L1190: 				s.fs,
		bundler.go#L1206: 				if !s.fs.IsAbs(path) {
		bundler.go#L1267: 						if relPath, ok := s.fs.Rel(s.options.AbsOutputDir, path.Text); ok {