:memo: clarify ignoring object files with electron-packager
authorMark Lee <electronjs@lazymalevolence.com>
Mon, 10 Oct 2016 17:08:36 +0000 (13:08 -0400)
committerMark Lee <electronjs@lazymalevolence.com>
Mon, 10 Oct 2016 17:08:36 +0000 (13:08 -0400)
Note that Electron Packager 8.1.0 ignores object files by default.

docs/tutorial/mac-app-store-submission-guide.md

index 4e25959edbdbd084fcb2206557a8208230bf9981..ae61042b6e5d30206ac7895f61053a345f6f731a 100644 (file)
@@ -135,8 +135,9 @@ electron-osx-sign YourApp.app YourApp.app/Contents/Resources/app/node_modules/na
 
 Also note that native modules may have intermediate files produced which should
 not be included (as they would also need to be signed). If you use
-[electron-packager][electron-packager], add `--ignore=.+\.o$` to build step to
-ignore these files.
+[electron-packager][electron-packager] before version 8.1.0, add
+`--ignore=.+\.o$` to your build step to ignore these files. Versions 8.1.0 and
+later ignores those files by default.
 
 ### Upload Your App