mirror of
https://github.com/Llewellynvdm/nativefier.git
synced 2024-11-05 04:47:54 +00:00
e9ccb35825
Per the [note](https://github.com/nativefier/nativefier/pull/1122#discussion_r588922780) by @SuperSandro2000 in #1122 Docker will still cache files in intermediate layers if you delete them, so they'll still be part of the image. Only solution seems to be to delete them as you create them so they don't cache: Per https://stackoverflow.com/questions/53998310/docker-remove-file-from-intermediate-layer Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
57 lines
731 B
Plaintext
57 lines
731 B
Plaintext
# git
|
|
.git*
|
|
|
|
# OSX
|
|
.DS_Store
|
|
|
|
# Node.js
|
|
|
|
# ignore compiled lib files
|
|
lib/*
|
|
app/lib/*
|
|
built-tests
|
|
dist
|
|
app/dist
|
|
|
|
# Docs
|
|
docs
|
|
*.md
|
|
|
|
# Logs
|
|
logs
|
|
*.log
|
|
npm-debug.log*
|
|
|
|
# Runtime data
|
|
pids
|
|
*.pid
|
|
*.seed
|
|
|
|
# Directory for instrumented libs generated by jscoverage/JSCover
|
|
lib-cov
|
|
|
|
# Coverage directory used by tools like istanbul
|
|
coverage
|
|
|
|
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
|
|
.grunt
|
|
|
|
# node-waf configuration
|
|
.lock-wscript
|
|
|
|
# Compiled binary addons (http://nodejs.org/api/addons.html)
|
|
build/Release
|
|
|
|
# Dependency directory
|
|
# https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
|
|
node_modules
|
|
app/node_modules
|
|
|
|
# IntelliJ project files
|
|
.idea
|
|
*.iml
|
|
out
|
|
gen
|
|
|
|
.vscode
|