Skip to content

Commit a3e0156

Browse files
committedJun 10, 2020
[docs] Remove bundle.js from the list of default ignored files
The documents say that "bundle.js" is ignored by default, but actually it is not. (1319c5b)
1 parent 59af281 commit a3e0156

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed
 

‎README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ projects `package.json` file.
129129

130130
### Ignoring Files
131131

132-
The paths `node_modules/**`, `*.min.js`, `bundle.js`, `coverage/**`, hidden files/folders
132+
The paths `node_modules/**`, `*.min.js`, `coverage/**`, hidden files/folders
133133
(beginning with `.`), and all patterns in a project's root `.gitignore` file are
134134
automatically ignored.
135135

@@ -152,7 +152,6 @@ Some files are ignored by default:
152152
```js
153153
var DEFAULT_IGNORE = [
154154
'**/*.min.js',
155-
'**/bundle.js',
156155
'coverage/**',
157156
'node_modules/**',
158157
'vendor/**'

‎bin/cmd.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Usage:
5353
If FILES is omitted, all JavaScript source files (*.js, *.jsx, *.mjs, *.cjs)
5454
in the current working directory are checked, recursively.
5555
56-
Certain paths (node_modules/, coverage/, vendor/, *.min.js, bundle.js, and
56+
Certain paths (node_modules/, coverage/, vendor/, *.min.js, and
5757
files/folders that begin with '.' like .git/) are automatically ignored.
5858
5959
Paths in a project's root .gitignore file are also automatically ignored.

0 commit comments

Comments
 (0)
Please sign in to comment.