mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-13 21:24:58 +08:00
9418160624
- 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
34 lines
981 B
CoffeeScript
34 lines
981 B
CoffeeScript
asar = require 'asar'
|
|
fs = require 'fs'
|
|
path = require 'path'
|
|
|
|
module.exports = (grunt) ->
|
|
{cp, rm} = require('./task-helpers')(grunt)
|
|
|
|
grunt.registerTask 'generate-asar', 'Generate asar archive for the app', ->
|
|
done = @async()
|
|
|
|
unpack = [
|
|
'*.node'
|
|
'**/vendor/**'
|
|
'examples/**'
|
|
'**/src/tasks/**'
|
|
'**/node_modules/spellchecker/**'
|
|
'**/node_modules/windows-shortcuts/**'
|
|
]
|
|
unpack = "{#{unpack.join(',')}}"
|
|
ordering = path.resolve(__dirname, '..', 'resources', 'asar-ordering-hint.txt')
|
|
|
|
appDir = grunt.config.get('nylasGruntConfig.appDir')
|
|
unless fs.existsSync(appDir)
|
|
grunt.log.error 'The app has to be built before generating asar archive.'
|
|
return done(false)
|
|
|
|
|
|
asar.createPackageWithOptions appDir, path.resolve(appDir, '..', 'app.asar'), {unpack, ordering}, (err) ->
|
|
return done(err) if err?
|
|
|
|
rm appDir
|
|
fs.renameSync path.resolve(appDir, '..', 'new-app'), appDir
|
|
|
|
done()
|