mirror of
https://github.com/Llewellynvdm/nativefier.git
synced 2024-10-31 18:52:30 +00:00
561beda96e
Previous attempt failed by design of `npm pack` / `npm publish`, as documented at https://docs.npmjs.com/cli/v6/configuring-npm/package-lock-json : > One key detail about package-lock.json is that it cannot be published, > and it will be ignored if found in any place other than the toplevel > package. It shares a format with npm-shrinkwrap.json, which is > essentially the same file, but allows publication. > > This is not recommended unless deploying a CLI tool or otherwise using > the publication process for producing production packages. , and we are a CLI tool. Switching to shrinkwrap.
66 lines
1003 B
Plaintext
66 lines
1003 B
Plaintext
# OSX
|
|
.DS_Store
|
|
|
|
# ignore compiled lib files
|
|
lib*
|
|
app/lib/*
|
|
app/dist/*
|
|
built-tests
|
|
|
|
# commit a placeholder to keep the app/lib directory
|
|
!app/lib/.placeholder
|
|
|
|
dist
|
|
package-lock.json
|
|
app/package-lock.json
|
|
|
|
# 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
|
|
.nvmrc
|
|
|
|
# Python virtual environment in case it's created for the Castlabs code signing tool
|
|
venv
|
|
|
|
# IntelliJ project files
|
|
.idea
|
|
*.iml
|
|
.run
|
|
out
|
|
gen
|
|
|
|
# Builds when testing npm pack
|
|
nativefier*.tgz
|
|
|
|
.vscode
|
|
|
|
# https://github.com/nektos/act
|
|
.actrc
|
|
|
|
tsconfig.tsbuildinfo
|