pulsar/Gruntfile.coffee

209 lines
5.8 KiB
CoffeeScript
Raw Normal View History

fs = require 'fs'
2013-05-30 04:35:00 +04:00
path = require 'path'
2013-10-21 17:42:55 +04:00
os = require 'os'
2013-05-30 04:35:00 +04:00
2013-08-20 21:52:18 +04:00
fm = require 'json-front-matter'
2013-10-15 20:34:59 +04:00
_ = require 'underscore-plus'
2013-08-20 21:52:18 +04:00
packageJson = require './package.json'
# OAuth token for atom-bot
# TODO Remove once all repositories are public
process.env.ATOM_ACCESS_TOKEN ?= '362295be4c5258d3f7b967bbabae662a455ca2a7'
2013-05-29 04:30:09 +04:00
module.exports = (grunt) ->
if not grunt.option('verbose')
grunt.log.writeln = (args...) -> grunt.log
2013-11-14 22:53:19 +04:00
grunt.log.write = (args...) -> grunt.log
2013-08-20 21:52:18 +04:00
[major, minor, patch] = packageJson.version.split('.')
2013-10-29 00:38:33 +04:00
if process.platform is 'win32'
appName = 'Atom'
tmpDir = os.tmpdir()
installRoot = process.env.ProgramFiles
buildDir = grunt.option('build-dir') ? path.join(tmpDir, 'atom-build')
shellAppDir = path.join(buildDir, appName)
appDir = path.join(shellAppDir, 'resources', 'app')
atomShellDownloadDir = path.join(os.tmpdir(), 'atom-cached-atom-shells')
2013-10-29 00:38:33 +04:00
else
appName = 'Atom.app'
tmpDir = '/tmp'
installRoot = '/Applications'
buildDir = grunt.option('build-dir') ? path.join(tmpDir, 'atom-build')
shellAppDir = path.join(buildDir, appName)
contentsDir = path.join(shellAppDir, 'Contents')
appDir = path.join(contentsDir, 'Resources', 'app')
atomShellDownloadDir = '/tmp/atom-cached-atom-shells'
2013-10-29 00:38:33 +04:00
2013-10-28 22:39:48 +04:00
installDir = path.join(installRoot, appName)
coffeeConfig =
options:
sourceMap: true
glob_to_multiple:
expand: true
src: [
'src/**/*.coffee'
2013-09-20 01:30:39 +04:00
'exports/**/*.coffee'
'static/**/*.coffee'
]
dest: appDir
ext: '.js'
lessConfig =
options:
paths: [
2013-09-04 23:14:57 +04:00
'static/variables'
'static'
]
glob_to_multiple:
expand: true
src: [
'static/**/*.less'
]
dest: appDir
ext: '.css'
prebuildLessConfig =
src: [
'static/**/*.less'
'node_modules/bootstrap/less/bootstrap.less'
]
csonConfig =
options:
rootObject: true
glob_to_multiple:
expand: true
src: [
2013-10-05 00:15:09 +04:00
'menus/*.cson'
2013-08-21 01:12:17 +04:00
'keymaps/*.cson'
'static/**/*.cson'
]
dest: appDir
ext: '.json'
for child in fs.readdirSync('node_modules') when child isnt '.bin'
directory = path.join('node_modules', child)
{engines, theme} = grunt.file.readJSON(path.join(directory, 'package.json'))
if engines?.atom?
coffeeConfig.glob_to_multiple.src.push("#{directory}/**/*.coffee")
lessConfig.glob_to_multiple.src.push("#{directory}/**/*.less")
prebuildLessConfig.src.push("#{directory}/**/*.less") unless theme
csonConfig.glob_to_multiple.src.push("#{directory}/**/*.cson")
2013-05-29 04:30:09 +04:00
grunt.initConfig
pkg: grunt.file.readJSON('package.json')
2013-06-27 20:07:33 +04:00
atom: {appDir, appName, buildDir, contentsDir, installDir, shellAppDir}
coffee: coffeeConfig
2013-05-30 04:35:00 +04:00
less: lessConfig
2013-05-30 04:35:00 +04:00
'prebuild-less': prebuildLessConfig
cson: csonConfig
2013-05-30 04:35:00 +04:00
2013-05-29 04:30:09 +04:00
coffeelint:
options:
2013-06-06 19:16:23 +04:00
no_empty_param_list:
level: 'error'
2013-05-29 04:30:09 +04:00
max_line_length:
level: 'ignore'
indentation:
level: 'ignore'
2013-06-13 00:04:10 +04:00
src: [
'dot-atom/**/*.coffee'
2013-09-20 01:30:39 +04:00
'exports/**/*.coffee'
2013-06-13 00:04:10 +04:00
'src/**/*.coffee'
2013-09-09 20:38:16 +04:00
'tasks/**/*.coffee'
2013-09-10 02:25:26 +04:00
'Gruntfile.coffee'
2013-06-13 00:04:10 +04:00
]
2013-05-29 22:50:53 +04:00
test: [
'spec/*.coffee'
]
2013-05-29 04:30:09 +04:00
2013-05-29 23:13:47 +04:00
csslint:
options:
'adjoining-classes': false
'duplicate-background-images': false
2013-06-12 21:07:04 +04:00
'box-model': false
2013-06-12 20:57:58 +04:00
'box-sizing': false
'bulletproof-font-face': false
'compatible-vendor-prefixes': false
'display-property-grouping': false
2013-05-29 23:13:47 +04:00
'fallback-colors': false
2013-06-12 21:13:09 +04:00
'font-sizes': false
2013-06-12 20:57:58 +04:00
'gradients': false
2013-06-12 21:07:04 +04:00
'ids': false
2013-06-12 20:57:58 +04:00
'important': false
2013-06-12 21:07:04 +04:00
'known-properties': false
2013-06-18 06:58:21 +04:00
'outline-none': false
2013-06-12 21:07:04 +04:00
'overqualified-elements': false
'qualified-headings': false
'unique-headings': false
'universal-selector': false
2013-06-12 03:34:48 +04:00
'vendor-prefix': false
src: [
'static/**/*.css'
]
2013-05-29 04:30:09 +04:00
2013-06-12 20:57:58 +04:00
lesslint:
src: [
'static/**/*.less'
]
markdown:
guides:
files: [
2013-08-20 21:52:18 +04:00
expand: true
cwd: 'docs'
2013-08-20 21:52:18 +04:00
src: '**/*.md'
dest: 'docs/output/'
ext: '.html'
]
2013-08-20 21:52:18 +04:00
options:
template: 'docs/template.jst'
templateContext:
tag: "v#{major}.#{minor}"
markdownOptions:
gfm: true
preCompile: (src, context) ->
parsed = fm.parse(src)
_.extend(context, parsed.attributes)
parsed.body
'download-atom-shell':
version: packageJson.atomShellVersion
outputDir: 'atom-shell'
downloadDir: atomShellDownloadDir
rebuild: true # rebuild native modules after atom-shell is updated
shell:
'kill-atom':
command: 'pkill -9 Atom'
options:
stdout: false
stderr: false
failOnError: false
2013-05-29 04:30:09 +04:00
grunt.loadNpmTasks('grunt-coffeelint')
2013-06-12 20:57:58 +04:00
grunt.loadNpmTasks('grunt-lesslint')
2013-06-16 09:09:38 +04:00
grunt.loadNpmTasks('grunt-cson')
2013-05-29 23:13:47 +04:00
grunt.loadNpmTasks('grunt-contrib-csslint')
2013-05-30 04:35:00 +04:00
grunt.loadNpmTasks('grunt-contrib-coffee')
grunt.loadNpmTasks('grunt-contrib-less')
grunt.loadNpmTasks('grunt-markdown')
grunt.loadNpmTasks('grunt-download-atom-shell')
grunt.loadNpmTasks('grunt-shell')
grunt.loadTasks('tasks')
2013-06-27 20:07:33 +04:00
grunt.registerTask('compile', ['coffee', 'prebuild-less', 'cson'])
2013-06-12 20:57:58 +04:00
grunt.registerTask('lint', ['coffeelint', 'csslint', 'lesslint'])
grunt.registerTask('test', ['shell:kill-atom', 'run-specs'])
grunt.registerTask('ci', ['download-atom-shell', 'build', 'set-development-version', 'lint', 'test'])
grunt.registerTask('deploy', ['partial-clean', 'download-atom-shell', 'build', 'codesign'])
grunt.registerTask('docs', ['markdown:guides', 'build-docs'])
grunt.registerTask('default', ['download-atom-shell', 'build', 'set-development-version', 'install'])