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.
24 lines
302 B
Plaintext
24 lines
302 B
Plaintext
/*
|
|
!lib/
|
|
!icon-scripts
|
|
!npm-shrinkwrap.json
|
|
.DS_Store
|
|
src/
|
|
*eslintrc.js
|
|
*eslintrc.yml
|
|
*tsconfig.tsbuildinfo
|
|
*tsconfig.json
|
|
*jestSetupFiles*
|
|
*-test.js
|
|
*-test.js.map
|
|
*.test.d.ts
|
|
*.test.js
|
|
*.test.js.map
|
|
app/*
|
|
!app/lib/
|
|
!app/inject/
|
|
!app/nativefier.json
|
|
!app/package.json
|
|
!app/npm-shrinkwrap.json
|
|
.vscode/
|