2014-02-12 05:23:40 -05:00
fs = require " fs "
2016-09-22 06:02:20 -04:00
PackageVersions = require " ./app/coffee/infrastructure/PackageVersions "
2017-01-18 10:38:18 -05:00
require ( ' es6-promise ' ) . polyfill ( )
2014-02-12 05:23:40 -05:00
module.exports = (grunt) ->
grunt . loadNpmTasks ' grunt-contrib-coffee '
grunt . loadNpmTasks ' grunt-contrib-less '
grunt . loadNpmTasks ' grunt-contrib-clean '
grunt . loadNpmTasks ' grunt-mocha-test '
grunt . loadNpmTasks ' grunt-available-tasks '
grunt . loadNpmTasks ' grunt-contrib-requirejs '
grunt . loadNpmTasks ' grunt-bunyan '
2015-03-17 12:59:17 -04:00
grunt . loadNpmTasks ' grunt-sed '
grunt . loadNpmTasks ' grunt-git-rev-parse '
2015-10-09 05:11:38 -04:00
grunt . loadNpmTasks ' grunt-file-append '
2015-11-12 07:38:35 -05:00
grunt . loadNpmTasks ' grunt-file-append '
grunt . loadNpmTasks ' grunt-env '
2016-06-15 07:08:11 -04:00
grunt . loadNpmTasks ' grunt-newer '
grunt . loadNpmTasks ' grunt-contrib-watch '
grunt . loadNpmTasks ' grunt-parallel '
grunt . loadNpmTasks ' grunt-exec '
2017-01-18 10:38:18 -05:00
grunt . loadNpmTasks ' grunt-postcss '
2016-07-01 10:04:39 -04:00
# grunt.loadNpmTasks 'grunt-contrib-imagemin'
2016-07-04 11:03:29 -04:00
# grunt.loadNpmTasks 'grunt-sprity'
2015-10-09 05:11:38 -04:00
2014-09-08 09:19:24 -04:00
config =
2016-06-15 07:08:11 -04:00
exec:
run:
command : " node app.js | ./node_modules/logger-sharelatex/node_modules/bunyan/bin/bunyan --color "
2016-07-10 06:04:51 -04:00
cssmin:
2016-07-10 06:10:43 -04:00
command : " node_modules/clean-css/bin/cleancss --s0 -o public/stylesheets/style.css public/stylesheets/style.css "
2016-06-15 07:08:11 -04:00
watch:
coffee:
2016-06-18 14:16:45 -04:00
files: ' public/**/*.coffee '
2016-06-15 07:08:11 -04:00
tasks: [ ' quickcompile:coffee ' ]
options: { }
less:
files: ' **/*.less '
tasks: [ ' compile:css ' ]
options: { }
parallel:
run:
tasks : [ ' exec ' , ' watch ' ]
options:
grunt : true
stream : true
2014-02-12 05:23:40 -05:00
2016-06-18 11:50:56 -04:00
2016-06-30 09:58:54 -04:00
# imagemin:
# dynamic:
# files: [{
# expand: true
# cwd: 'public/img/'
# src: ['**/*.{png,jpg,gif}']
# dest: 'public/img/'
# }]
# options:
# interlaced:false
# optimizationLevel: 7
2016-06-18 14:16:45 -04:00
2016-07-04 11:03:29 -04:00
# sprity:
# sprite:
# options:
# cssPath:"/img/"
# 'style': '../../public/stylesheets/app/sprites.less'
# margin: 0
# src: ['./public/img/flags/24/*.png']
# dest: './public/img/sprite'
2016-06-18 14:16:45 -04:00
2016-06-18 11:50:56 -04:00
2014-02-12 05:23:40 -05:00
coffee:
app_dir:
expand: true ,
flatten: false ,
cwd: ' app/coffee ' ,
src: [ ' **/*.coffee ' ] ,
dest: ' app/js/ ' ,
ext: ' .js '
app:
src: ' app.coffee '
dest: ' app.js '
2014-03-18 11:06:10 -04:00
2014-02-12 05:23:40 -05:00
sharejs:
options:
join: true
files:
" public/js/libs/sharejs.js " : [
2014-07-08 07:01:32 -04:00
" public/coffee/ide/editor/sharejs/header.coffee "
" public/coffee/ide/editor/sharejs/vendor/types/helpers.coffee "
" public/coffee/ide/editor/sharejs/vendor/types/text.coffee "
" public/coffee/ide/editor/sharejs/vendor/types/text-api.coffee "
" public/coffee/ide/editor/sharejs/vendor/client/microevent.coffee "
" public/coffee/ide/editor/sharejs/vendor/client/doc.coffee "
" public/coffee/ide/editor/sharejs/vendor/client/ace.coffee "
2014-02-12 05:23:40 -05:00
]
client:
expand: true ,
flatten: false ,
cwd: ' public/coffee ' ,
src: [ ' **/*.coffee ' ] ,
dest: ' public/js/ ' ,
2017-06-26 11:27:12 -04:00
ext: ' .js ' ,
2017-06-26 11:14:03 -04:00
options:
2017-06-26 11:27:12 -04:00
sourceMap: true
2014-02-12 05:23:40 -05:00
smoke_tests:
expand: true ,
flatten: false ,
cwd: ' test/smoke/coffee ' ,
src: [ ' **/*.coffee ' ] ,
dest: ' test/smoke/js/ ' ,
ext: ' .js '
unit_tests:
expand: true ,
flatten: false ,
cwd: ' test/UnitTests/coffee ' ,
src: [ ' **/*.coffee ' ] ,
dest: ' test/UnitTests/js/ ' ,
ext: ' .js '
2016-03-08 10:59:04 -05:00
acceptance_tests:
expand: true ,
flatten: false ,
cwd: ' test/acceptance/coffee ' ,
src: [ ' **/*.coffee ' ] ,
dest: ' test/acceptance/js/ ' ,
ext: ' .js '
2014-02-12 05:23:40 -05:00
less:
app:
2017-10-17 10:04:43 -04:00
# options:
# sourceMap: true
2014-02-12 05:23:40 -05:00
files:
2014-06-04 11:14:35 -04:00
" public/stylesheets/style.css " : " public/stylesheets/style.less "
2017-08-07 11:01:59 -04:00
ol:
2017-10-17 10:04:43 -04:00
# options:
# sourceMap: true
2017-08-07 11:01:59 -04:00
files:
" public/stylesheets/ol-style.css " : " public/stylesheets/ol-style.less "
2014-02-12 05:23:40 -05:00
2017-01-18 10:38:18 -05:00
postcss:
options:
map: true ,
processors: [
require ( ' autoprefixer ' ) ( { browsers: [ ' last 2 versions ' , ' ie >= 10 ' ] } )
]
dist:
src: ' public/stylesheets/style.css '
2016-06-18 16:49:32 -04:00
2015-11-12 07:38:35 -05:00
env:
run:
add:
NODE_TLS_REJECT_UNAUTHORIZED : 0
2016-06-15 07:08:11 -04:00
2014-02-12 05:23:40 -05:00
requirejs:
compile:
options:
2014-06-16 13:29:55 -04:00
optimize : " uglify2 "
uglify2:
mangle: false
2014-02-12 05:23:40 -05:00
appDir: " public/js "
baseUrl: " ./ "
dir: " public/minjs "
inlineText: false
2017-06-26 11:14:03 -04:00
generateSourceMaps: true
2014-02-12 05:23:40 -05:00
preserveLicenseComments: false
paths:
2016-09-22 06:36:53 -04:00
" moment " : " libs/ #{ PackageVersions . lib ( ' moment ' ) } "
2015-01-29 13:11:38 -05:00
" mathjax " : " /js/libs/mathjax/MathJax.js?config=TeX-AMS_HTML "
2016-10-13 09:51:21 -04:00
" pdfjs-dist/build/pdf " : " libs/ #{ PackageVersions . lib ( ' pdfjs ' ) } /pdf "
2016-10-12 04:52:15 -04:00
" ace " : " #{ PackageVersions . lib ( ' ace ' ) } "
2014-02-12 05:23:40 -05:00
shim:
2016-10-13 09:51:21 -04:00
" pdfjs-dist/build/pdf " :
2016-09-22 06:36:53 -04:00
deps: [ " libs/ #{ PackageVersions . lib ( ' pdfjs ' ) } /compatibility " ]
2014-02-12 05:23:40 -05:00
skipDirOptimize: true
modules: [
{
name: " main " ,
2014-07-08 07:01:32 -04:00
exclude: [ " libs " ]
2014-02-12 05:23:40 -05:00
} , {
name: " ide " ,
2016-10-13 09:51:21 -04:00
exclude: [ " libs " , " pdfjs-dist/build/pdf " ]
2014-02-12 05:23:40 -05:00
} , {
2014-07-08 07:01:32 -04:00
name: " libs "
2014-11-04 07:01:53 -05:00
} , {
name: " ace/mode-latex "
2016-09-14 10:17:24 -04:00
} , {
name: " ace/worker-latex "
2014-02-12 05:23:40 -05:00
}
2014-11-04 07:01:53 -05:00
2014-02-12 05:23:40 -05:00
]
clean:
app: [ " app/js " ]
unit_tests: [ " test/UnitTests/js " ]
2016-03-08 10:59:04 -05:00
acceptance_tests: [ " test/acceptance/js " ]
2014-02-12 05:23:40 -05:00
mochaTest:
unit:
src: [ " test/UnitTests/js/ #{ grunt . option ( ' feature ' ) or ' ** ' } /*.js " ]
options:
reporter: grunt . option ( ' reporter ' ) or ' spec '
grep: grunt . option ( " grep " )
smoke:
src: [ ' test/smoke/js/**/*.js ' ]
options:
reporter: grunt . option ( ' reporter ' ) or ' spec '
grep: grunt . option ( " grep " )
2016-03-08 10:59:04 -05:00
acceptance:
src: [ " test/acceptance/js/ #{ grunt . option ( ' feature ' ) or ' ** ' } /*.js " ]
options:
2016-07-28 09:50:08 -04:00
timeout: 40000
2016-03-08 10:59:04 -05:00
reporter: grunt . option ( ' reporter ' ) or ' spec '
grep: grunt . option ( " grep " )
2014-02-12 05:23:40 -05:00
2015-03-17 12:59:17 -04:00
" git-rev-parse " :
version:
options:
prop: ' commit '
2015-10-09 05:11:38 -04:00
file_append:
default_options: files: [ {
append: ' \n //ide.js is complete - used for automated testing '
input: ' public/minjs/ide.js '
output: ' public/minjs/ide.js '
} ]
2015-03-17 12:59:17 -04:00
sed:
version:
2017-01-20 07:03:02 -05:00
path: " app/views/sentry.pug "
2015-03-17 12:59:17 -04:00
pattern: ' @@COMMIT@@ ' ,
replacement: ' <%= commit %> ' ,
release:
2017-01-20 07:03:02 -05:00
path: " app/views/sentry.pug "
2015-03-17 12:59:17 -04:00
pattern: " @@RELEASE@@ "
replacement: process . env . BUILD_NUMBER || " (unknown build) "
2014-02-12 05:23:40 -05:00
2016-06-30 09:58:54 -04:00
2016-06-15 07:08:11 -04:00
2014-02-12 05:23:40 -05:00
availabletasks:
tasks:
options:
2016-06-15 07:08:11 -04:00
filter: ' exclude ' ,
tasks: [
' coffee '
' less '
' clean '
' mochaTest '
' availabletasks '
' wrap_sharejs '
' requirejs '
' execute '
' bunyan '
]
groups:
" Compile tasks " : [
" compile:server "
" compile:client "
" compile:tests "
" compile "
" compile:unit_tests "
" compile:smoke_tests "
" compile:css "
" compile:minify "
" install "
]
" Test tasks " : [
" test:unit "
" test:acceptance "
]
" Run tasks " : [
" run "
" default "
]
" Misc " : [
" help "
]
2014-02-12 05:23:40 -05:00
2014-09-08 09:19:24 -04:00
moduleCompileServerTasks = [ ]
moduleCompileUnitTestTasks = [ ]
moduleUnitTestTasks = [ ]
2014-09-08 12:33:30 -04:00
moduleCompileClientTasks = [ ]
moduleIdeClientSideIncludes = [ ]
2014-10-03 06:32:59 -04:00
moduleMainClientSideIncludes = [ ]
2014-09-08 09:23:47 -04:00
if fs . existsSync " ./modules "
for module in fs . readdirSync " ./modules "
2014-09-08 10:40:46 -04:00
if fs . existsSync " ./modules/ #{ module } /index.coffee "
config . coffee [ " module_ #{ module } _server " ] = {
expand: true ,
flatten: false ,
cwd: " modules/ #{ module } /app/coffee " ,
src: [ ' **/*.coffee ' ] ,
dest: " modules/ #{ module } /app/js " ,
ext: ' .js '
}
config . coffee [ " module_ #{ module } _index " ] = {
src: " modules/ #{ module } /index.coffee " ,
dest: " modules/ #{ module } /index.js "
}
moduleCompileServerTasks . push " coffee:module_ #{ module } _server "
moduleCompileServerTasks . push " coffee:module_ #{ module } _index "
config . coffee [ " module_ #{ module } _unit_tests " ] = {
expand: true ,
flatten: false ,
cwd: " modules/ #{ module } /test/unit/coffee " ,
src: [ ' **/*.coffee ' ] ,
dest: " modules/ #{ module } /test/unit/js " ,
ext: ' .js '
}
config . mochaTest [ " module_ #{ module } _unit " ] = {
2017-08-21 11:49:08 -04:00
src: [ " modules/ #{ module } /test/unit/js/**/*.js " ]
2014-09-08 10:40:46 -04:00
options:
reporter: grunt . option ( ' reporter ' ) or ' spec '
grep: grunt . option ( " grep " )
}
moduleCompileUnitTestTasks . push " coffee:module_ #{ module } _unit_tests "
moduleUnitTestTasks . push " mochaTest:module_ #{ module } _unit "
2014-09-08 12:33:30 -04:00
2014-10-03 06:32:59 -04:00
if fs . existsSync " ./modules/ #{ module } /public/coffee/ide/index.coffee "
2014-09-08 12:33:30 -04:00
config . coffee [ " module_ #{ module } _client_ide " ] = {
expand: true ,
flatten: false ,
cwd: " modules/ #{ module } /public/coffee/ide " ,
src: [ ' **/*.coffee ' ] ,
dest: " public/js/ide/ #{ module } " ,
ext: ' .js '
}
moduleCompileClientTasks . push " coffee:module_ #{ module } _client_ide "
moduleIdeClientSideIncludes . push " ide/ #{ module } /index "
2014-10-03 06:32:59 -04:00
if fs . existsSync " ./modules/ #{ module } /public/coffee/main/index.coffee "
config . coffee [ " module_ #{ module } _client_main " ] = {
expand: true ,
flatten: false ,
cwd: " modules/ #{ module } /public/coffee/main " ,
src: [ ' **/*.coffee ' ] ,
dest: " public/js/main/ #{ module } " ,
ext: ' .js '
}
moduleCompileClientTasks . push " coffee:module_ #{ module } _client_main "
moduleMainClientSideIncludes . push " main/ #{ module } /index "
2014-09-08 09:19:24 -04:00
grunt . initConfig config
2014-02-12 05:23:40 -05:00
grunt . registerTask ' wrap_sharejs ' , ' Wrap the compiled ShareJS code for AMD module loading ' , () ->
content = fs . readFileSync " public/js/libs/sharejs.js "
fs . writeFileSync " public/js/libs/sharejs.js " , """
2014-07-09 13:20:57 -04:00
define ( [ " ace/ace " ] , function ( ) {
2014-02-12 05:23:40 -05:00
#{content}
return window . sharejs ;
} ) ;
"""
grunt . registerTask ' help ' , ' Display this help list ' , ' availabletasks '
2014-09-08 09:19:24 -04:00
grunt . registerTask ' compile:modules:server ' , ' Compile all the modules ' , moduleCompileServerTasks
grunt . registerTask ' compile:modules:unit_tests ' , ' Compile all the modules unit tests ' , moduleCompileUnitTestTasks
2014-09-08 12:33:30 -04:00
grunt . registerTask ' compile:modules:client ' , ' Compile all the module client side code ' , moduleCompileClientTasks
grunt . registerTask ' compile:modules:inject_clientside_includes ' , () ->
content = fs . readFileSync ( " public/js/ide.js " ) . toString ( )
2014-10-08 07:22:04 -04:00
content = content . replace ( /, "__IDE_CLIENTSIDE_INCLUDES__"/g , moduleIdeClientSideIncludes . map ( (i) -> " , \" #{ i } \" " ) . join ( " " ) )
2014-09-08 12:33:30 -04:00
fs . writeFileSync " public/js/ide.js " , content
2014-10-03 06:32:59 -04:00
content = fs . readFileSync ( " public/js/main.js " ) . toString ( )
2014-10-08 07:22:04 -04:00
content = content . replace ( /, "__MAIN_CLIENTSIDE_INCLUDES__"/g , moduleMainClientSideIncludes . map ( (i) -> " , \" #{ i } \" " ) . join ( " " ) )
2014-10-03 06:32:59 -04:00
fs . writeFileSync " public/js/main.js " , content
2014-09-08 12:33:30 -04:00
2014-09-08 09:19:24 -04:00
grunt . registerTask ' compile:server ' , ' Compile the server side coffee script ' , [ ' clean:app ' , ' coffee:app ' , ' coffee:app_dir ' , ' compile:modules:server ' ]
2014-09-08 12:33:30 -04:00
grunt . registerTask ' compile:client ' , ' Compile the client side coffee script ' , [ ' coffee:client ' , ' coffee:sharejs ' , ' wrap_sharejs ' , " compile:modules:client " , ' compile:modules:inject_clientside_includes ' ]
2017-01-18 10:38:18 -05:00
grunt . registerTask ' compile:css ' , ' Compile the less files to css ' , [ ' less ' , ' postcss:dist ' ]
2016-07-10 06:04:51 -04:00
grunt . registerTask ' compile:minify ' , ' Concat and minify the client side js ' , [ ' requirejs ' , " file_append " , " exec:cssmin " , ]
2014-02-12 05:23:40 -05:00
grunt . registerTask ' compile:unit_tests ' , ' Compile the unit tests ' , [ ' clean:unit_tests ' , ' coffee:unit_tests ' ]
2016-03-08 10:59:04 -05:00
grunt . registerTask ' compile:acceptance_tests ' , ' Compile the acceptance tests ' , [ ' clean:acceptance_tests ' , ' coffee:acceptance_tests ' ]
2014-02-12 05:23:40 -05:00
grunt . registerTask ' compile:smoke_tests ' , ' Compile the smoke tests ' , [ ' coffee:smoke_tests ' ]
grunt . registerTask ' compile:tests ' , ' Compile all the tests ' , [ ' compile:smoke_tests ' , ' compile:unit_tests ' ]
grunt . registerTask ' compile ' , ' Compiles everything need to run web-sharelatex ' , [ ' compile:server ' , ' compile:client ' , ' compile:css ' ]
2016-06-15 07:08:11 -04:00
grunt . registerTask ' quickcompile:coffee ' , ' Compiles only changed coffee files ' , [ ' newer:coffee ' ]
2014-02-12 05:23:40 -05:00
grunt . registerTask ' install ' , " Compile everything when installing as an npm module " , [ ' compile ' ]
2015-06-16 05:53:18 -04:00
grunt . registerTask ' test:unit ' , ' Run the unit tests (use --grep=<regex> or --feature=<feature> for individual tests) ' , [ ' compile:server ' , ' compile:modules:server ' , ' compile:unit_tests ' , ' compile:modules:unit_tests ' , ' mochaTest:unit ' ] . concat ( moduleUnitTestTasks )
2016-03-08 10:59:04 -05:00
grunt . registerTask ' test:acceptance ' , ' Run the acceptance tests (use --grep=<regex> or --feature=<feature> for individual tests) ' , [ ' compile:acceptance_tests ' , ' mochaTest:acceptance ' ]
2014-02-12 05:23:40 -05:00
grunt . registerTask ' test:smoke ' , ' Run the smoke tests ' , [ ' compile:smoke_tests ' , ' mochaTest:smoke ' ]
2014-09-08 09:19:24 -04:00
grunt . registerTask ' test:modules:unit ' , ' Run the unit tests for the modules ' , [ ' compile:modules:server ' , ' compile:modules:unit_tests ' ] . concat ( moduleUnitTestTasks )
2014-02-12 05:23:40 -05:00
2016-09-21 05:48:23 -04:00
grunt . registerTask ' run:watch ' , " Compile and run the web-sharelatex server " , [ ' compile ' , ' env:run ' , ' parallel ' ]
grunt . registerTask ' run ' , " Compile and run the web-sharelatex server " , [ ' compile ' , ' env:run ' , ' exec ' ]
2016-06-15 07:08:11 -04:00
2014-02-12 05:23:40 -05:00
grunt . registerTask ' default ' , ' run '
2017-01-20 07:03:02 -05:00
grunt . registerTask ' version ' , " Write the version number into sentry.pug " , [ ' git-rev-parse ' , ' sed ' ]
2015-11-18 10:21:48 -05:00