mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-11-10 10:17:11 +03:00
51 lines
1.7 KiB
CoffeeScript
51 lines
1.7 KiB
CoffeeScript
fs = require 'fs'
|
|
path = require 'path'
|
|
|
|
module.exports = (grunt) ->
|
|
{spawn} = require('./task-helpers')(grunt)
|
|
|
|
getVersion = (callback) ->
|
|
if process.env.JANKY_SHA1 and process.env.JANKY_BRANCH is 'master'
|
|
{version} = require(path.join(grunt.config.get('atom.appDir'), 'package.json'))
|
|
callback(null, version)
|
|
else
|
|
cmd = 'git'
|
|
args = ['rev-parse', '--short', 'HEAD']
|
|
spawn {cmd, args}, (error, {stdout}={}, code) ->
|
|
callback(error, stdout?.trim?())
|
|
|
|
grunt.registerTask 'set-version', 'Set the version in the plist and package.json', ->
|
|
done = @async()
|
|
|
|
getVersion (error, version) ->
|
|
if error?
|
|
done(error)
|
|
return
|
|
|
|
appDir = grunt.config.get('atom.appDir')
|
|
|
|
# Replace version field of package.json.
|
|
packageJsonPath = path.join(appDir, 'package.json')
|
|
packageJson = require(packageJsonPath)
|
|
packageJson.version = version
|
|
packageJsonString = JSON.stringify(packageJson, null, 2)
|
|
fs.writeFileSync(packageJsonPath, packageJsonString)
|
|
|
|
if process.platform is 'darwin'
|
|
cmd = 'script/set-version'
|
|
args = [grunt.config.get('atom.buildDir'), version]
|
|
spawn {cmd, args}, (error, result, code) -> done(error)
|
|
else if process.platform is 'win32'
|
|
shellAppDir = grunt.config.get('atom.shellAppDir')
|
|
shellExePath = path.join(shellAppDir, 'atom.exe')
|
|
|
|
strings =
|
|
CompanyName: 'GitHub, Inc.'
|
|
FileDescription: 'The hackable, collaborative editor'
|
|
LegalCopyright: 'Copyright (C) 2013 GitHub, Inc. All rights reserved'
|
|
ProductName: 'Atom'
|
|
ProductVersion: version
|
|
|
|
rcedit = require('rcedit')
|
|
rcedit(shellExePath, {'version-string': strings}, done)
|