mirror of
https://github.com/Doodle3D/Doodle3D-API
synced 2024-12-23 14:13:47 +01:00
75 lines
2.5 KiB
Plaintext
75 lines
2.5 KiB
Plaintext
require! <[./build fs ./config]>
|
|
module.exports = (grunt)->
|
|
grunt.loadNpmTasks \grunt-contrib-clean
|
|
grunt.loadNpmTasks \grunt-contrib-copy
|
|
grunt.loadNpmTasks \grunt-contrib-uglify
|
|
grunt.loadNpmTasks \grunt-contrib-watch
|
|
grunt.loadNpmTasks \grunt-livescript
|
|
grunt.loadNpmTasks \grunt-karma
|
|
grunt.initConfig do
|
|
pkg: grunt.file.readJSON './package.json'
|
|
uglify: build:
|
|
files: '<%=grunt.option("path")%>.min.js': '<%=grunt.option("path")%>.js'
|
|
options:
|
|
mangle: {+sort}
|
|
compress: {+unsafe, +pure_getters}
|
|
sourceMap: '<%=grunt.option("path")%>.min.map'
|
|
banner: config.banner
|
|
report: \gzip
|
|
livescript: src: files:
|
|
'./tests/tests.js': './tests/tests/*'
|
|
'./tests/tests-library.js': './tests/tests-library/*'
|
|
'./build/index.js': './build/build.ls*'
|
|
clean: ['./library']
|
|
copy: lib: files:
|
|
* expand: on
|
|
cwd: './'
|
|
src: <[modules/** es5/** es6/** es7/** js/** web/** core/** fn/** index.js shim.js]>
|
|
dest: './library/'
|
|
* expand: on
|
|
cwd: './modules/library/'
|
|
src: <[modules/*]>
|
|
dest: './library/'
|
|
watch:
|
|
core:
|
|
files: './modules/*'
|
|
tasks: \default
|
|
tests:
|
|
files: './tests/tests/*'
|
|
tasks: \livescript
|
|
karma:
|
|
unit:
|
|
configFile: './tests/karma.conf.js'
|
|
continuous:
|
|
configFile: './tests/karma.conf.js'
|
|
singleRun: true
|
|
browsers: ['PhantomJS']
|
|
grunt.registerTask \build (options)->
|
|
done = @async!
|
|
err, it <- build {
|
|
modules: (options || 'es5,es6,es7,js,web,core')split \,
|
|
blacklist: (grunt.option(\blacklist) || '')split \,
|
|
library: !!grunt.option \library
|
|
}
|
|
if err
|
|
console.error err
|
|
process.exit 1
|
|
grunt.option(\path) || grunt.option(\path, './custom')
|
|
fs.writeFile grunt.option(\path) + '.js', it, done
|
|
grunt.registerTask \client ->
|
|
grunt.option \library ''
|
|
grunt.option \path './client/core'
|
|
grunt.task.run <[build:es5,es6,es7,js,web,core uglify]>
|
|
grunt.registerTask \library ->
|
|
grunt.option \library 'true'
|
|
grunt.option \path './client/library'
|
|
grunt.task.run <[build:es5,es6,es7,js,web,core uglify]>
|
|
grunt.registerTask \shim ->
|
|
grunt.option \library ''
|
|
grunt.option \path './client/shim'
|
|
grunt.task.run <[build:es5,es6,es7,js,web uglify]>
|
|
grunt.registerTask \e ->
|
|
grunt.option \library ''>
|
|
grunt.option \path './client/core'
|
|
grunt.task.run <[build:es5,es6,es7,js,web,core,exp uglify]>
|
|
grunt.registerTask \default <[clean copy client library shim]> |