Skip to content

Commit 060799c

Browse files
committed
Improve gitignores
1 parent e7e8634 commit 060799c

File tree

14 files changed

+30
-40
lines changed

14 files changed

+30
-40
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
node_modules
1+
node_modules/
22
npm-debug.log
33
yarn-error.log
4-
lib
5-
dist/client-bundle.js
6-
dist/client-bundle.js.map
4+
/lib/
5+
/dist/client-bundle.js*
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
node_modules
1+
node_modules/
22
npm-debug.log
33
yarn-error.log
4-
lib
5-
dist/client-bundle.js
6-
dist/client-bundle.js.map
4+
/lib/
5+
/dist/client-bundle.js*

tutorial/12-flow/.gitignore

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
node_modules
1+
node_modules/
22
npm-debug.log
33
yarn-error.log
4-
lib
5-
dist/client-bundle.js
6-
dist/client-bundle.js.map
4+
/lib/
5+
/dist/client-bundle.js*

tutorial/2-packages/.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
node_modules
1+
node_modules/
22
npm-debug.log
33
yarn-error.log

tutorial/2-packages/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Open `package.json` to see how Yarn automatically added `color` in `dependencie
88

99
A `node_modules` folder has been created to store the package.
1010

11-
- Add `node_modules` to your `.gitignore` file (and `git init` a new repo if you haven't done that yet).
11+
- Add `node_modules/` to your `.gitignore` file (and `git init` a new repo if you haven't done that yet).
1212

1313
You will also notice that a `yarn.lock` file got generated by Yarn. You should commit this file to your repository, as it will ensure that everyone in your team uses the same version of your packages. If you're sticking to NPM instead of Yarn, the equivalent of this file is the *shrinkwrap*.
1414

tutorial/3-es6-babel-gulp/.gitignore

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
node_modules
1+
node_modules/
22
npm-debug.log
33
yarn-error.log
4-
lib
4+
/lib/

tutorial/3-es6-babel-gulp/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Alright! Let's see if this works.
8585
- In `package.json`, change your `start` script to: `"start": "gulp"`.
8686
- Run `yarn start`. It should print "Hello ES6" and start watching for changes. Try writing bad code in `src/index.js` to see Gulp automatically showing you the error when you save.
8787

88-
- Add `lib` to your `.gitignore`
88+
- Add `/lib/` to your `.gitignore`
8989

9090

9191
Next section: [4 - Using the ES6 syntax with a class](/tutorial/4-es6-syntax-class)
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
node_modules
1+
node_modules/
22
npm-debug.log
33
yarn-error.log
4-
lib
4+
/lib/
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
node_modules
1+
node_modules/
22
npm-debug.log
33
yarn-error.log
4-
lib
4+
/lib/

tutorial/6-eslint/.gitignore

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
node_modules
1+
node_modules/
22
npm-debug.log
33
yarn-error.log
4-
lib
4+
/lib/

tutorial/7-client-webpack/.gitignore

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
node_modules
1+
node_modules/
22
npm-debug.log
33
yarn-error.log
4-
lib
5-
dist/client-bundle.js
6-
dist/client-bundle.js.map
4+
/lib/
5+
/dist/client-bundle.js*

tutorial/7-client-webpack/README.md

+1-5
Original file line numberDiff line numberDiff line change
@@ -183,11 +183,7 @@ One last thing: unlike our `lib` folder, the `dist/client-bundle.js` and `dist/c
183183
gulp.task('clean', () => del([paths.libDir, paths.clientBundle]));
184184
```
185185

186-
- Add this to your `.gitignore` file:
187-
```
188-
dist/client-bundle.js
189-
dist/client-bundle.js.map
190-
```
186+
- Add `/dist/client-bundle.js*` to your `.gitignore` file:
191187

192188
Next section: [8 - React](/tutorial/8-react)
193189

tutorial/8-react/.gitignore

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
node_modules
1+
node_modules/
22
npm-debug.log
33
yarn-error.log
4-
lib
5-
dist/client-bundle.js
6-
dist/client-bundle.js.map
4+
/lib/
5+
/dist/client-bundle.js*

tutorial/9-redux/.gitignore

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
node_modules
1+
node_modules/
22
npm-debug.log
33
yarn-error.log
4-
lib
5-
dist/client-bundle.js
6-
dist/client-bundle.js.map
4+
/lib/
5+
/dist/client-bundle.js*

0 commit comments

Comments
 (0)