mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-11-09 16:01:42 +08:00
fix(build): Update asar unpack patterns to match top level examples
- Any dependencies that have an `examples` directory would not get packed into the asar, causing the windows build to fail because of path lengths > 250 characters
This commit is contained in:
parent
f9d86434e5
commit
9418160624
1 changed files with 1 additions and 1 deletions
|
|
@ -11,7 +11,7 @@ module.exports = (grunt) ->
|
||||||
unpack = [
|
unpack = [
|
||||||
'*.node'
|
'*.node'
|
||||||
'**/vendor/**'
|
'**/vendor/**'
|
||||||
'**/examples/**'
|
'examples/**'
|
||||||
'**/src/tasks/**'
|
'**/src/tasks/**'
|
||||||
'**/node_modules/spellchecker/**'
|
'**/node_modules/spellchecker/**'
|
||||||
'**/node_modules/windows-shortcuts/**'
|
'**/node_modules/windows-shortcuts/**'
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue