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:
Juan Tejada 2016-06-02 16:56:31 -07:00
parent f9d86434e5
commit 9418160624

View file

@ -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/**'