Skip to content

Commit

Permalink
Never include .git folders in package root
Browse files Browse the repository at this point in the history
Git folders are in the default ignore set.  However, occasionally git
can create a file named 'readme', or another of npm's 'always include'
filenames.

This roots the always-include filename set to the root with a /, and
also avoids even walking the root's .git folder.  (Git folders can still
be included explicitly deeper in the package, if they are included in a
package.json files list, or un-ignored in a .gitignore or .npmignore.)
  • Loading branch information
isaacs committed Jun 27, 2019
1 parent 1a4c8bf commit 68b7c96
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
14 changes: 14 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,12 @@ const npmWalker = Class => class Walker extends Class {
}
}

onReaddir (entries) {
if (!this.parent)
entries = entries.filter(e => e !== '.git')
return super.onReaddir(entries)
}

filterEntry (entry, partial) {
// get the partial path from the root of the walk
const p = this.path.substr(this.root.length + 1)
Expand Down Expand Up @@ -147,6 +153,14 @@ const npmWalker = Class => class Walker extends Class {

// if there's a bin, browser or main, make sure we don't ignore it
// also, don't ignore the package.json itself!
//
// Weird side-effect of this: a readme (etc) file will be included
// if it exists anywhere within a folder with a package.json file.
// The original intent was only to include these files in the root,
// but now users in the wild are dependent on that behavior for
// localized documentation and other use cases. Adding a `/` to
// these rules, while tempting and arguably more "correct", is a
// breaking change.
const rules = [
pkg.browser ? '!' + pkg.browser : '',
pkg.main ? '!' + pkg.main : '',
Expand Down
6 changes: 6 additions & 0 deletions test/ignores.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,12 @@ t.test('setup', t => {
path.join(gitDir, 'gitstub'),
"won't fool git, also won't be included"
)
const gitDeep = path.join(pkg, '.git/logs/refs/remotes/name')
mkdirp.sync(gitDeep)
fs.writeFileSync(
path.join(gitDeep, 'readme'),
'please do not include git dirs (or even walk to them)'
)

const historyDir = path.join(pkg, 'node_modules/history')
mkdirp.sync(historyDir)
Expand Down

0 comments on commit 68b7c96

Please sign in to comment.