15 lines
312 B
Text
15 lines
312 B
Text
|
# Ignore the node modules folder (created by 'npm install').
|
||
|
node_modules
|
||
|
|
||
|
# We absolutely don't want to have the .sass-cache in git.
|
||
|
.sass-cache
|
||
|
|
||
|
# Ignore any errors thrown by npm.
|
||
|
npm-debug.log
|
||
|
|
||
|
# Ignore any map files. These don't need to be committed.
|
||
|
*.map
|
||
|
|
||
|
# Ignore the package lock file.
|
||
|
package-lock.json
|