forked from angular-ui/angular-google-maps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.coffee
93 lines (73 loc) · 3.7 KB
/
Gruntfile.coffee
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
log = require('util').log
_ = require 'lodash'
module.exports = (grunt) ->
# Load the required plugins
grunt.loadNpmTasks "grunt-contrib-uglify"
grunt.loadNpmTasks "grunt-contrib-jshint"
grunt.loadNpmTasks "grunt-contrib-concat"
grunt.loadNpmTasks "grunt-contrib-clean"
grunt.loadNpmTasks "grunt-contrib-connect"
grunt.loadNpmTasks "grunt-contrib-copy"
grunt.loadNpmTasks "grunt-contrib-watch"
grunt.loadNpmTasks "grunt-open"
grunt.loadNpmTasks "grunt-mkdir"
grunt.loadNpmTasks "grunt-contrib-coffee"
grunt.loadNpmTasks "grunt-contrib-jasmine"
grunt.loadNpmTasks "grunt-conventional-changelog"
grunt.loadNpmTasks "grunt-bump"
grunt.loadNpmTasks 'grunt-replace'
grunt.loadNpmTasks('grunt-subgrunt')
#squishing this file done by moving grunt options out to its own file. This way we can focus on tasks!
options = require('./grunt/options')(grunt)
allExamples = grunt.file.expand('example/*.html')
#map allExamples listed from grunt.file.expand to an open format of 'example' -> path
allExamplesOpen = {}
allExamples.forEach (path) ->
root = path.replace('example/', '').replace('.html', '')
pathValue = "http://localhost:3100/#{path}"
allExamplesOpen[root] =
path: pathValue
showOpenType = (toIterate = allExamplesOpen) ->
_(toIterate).each (v, k) ->
log "#{k} -> #{v.path}"
#showAllExamples()
options.open = _.extend options.open, allExamplesOpen
grunt.initConfig options
# Default task: build a release in dist/
grunt.registerTask "default", ["clean:dist", "jshint", "mkdir", "coffee", "concat:libs", "replace", "concat:dist", "copy",
"uglify", "jasmine:spec"]
grunt.registerTask "fast", ["clean:dist", "jshint", "mkdir", "coffee", "concat:libs", "replace", "concat:dist", "copy", "jasmine:spec"]
# run default "grunt" prior to generate _SpecRunner.html
grunt.registerTask "spec", ["clean:dist", "jshint", "mkdir", "coffee", "concat:libs", "replace", "concat:dist", "copy",
"connect:jasmineServer", "open:jasmine", "watch:spec"]
grunt.registerTask "coverage", ["clean:dist", "jshint", "mkdir", "coffee", "concat:libs", "replace", "concat:dist", "copy",
"uglify", "jasmine:coverage"]
# Run the example page by creating a local copy of angular-google-maps.js
# and running a webserver on port 3100 with livereload. Web page is opened
# automatically in the default browser.
grunt.registerTask 'bump-@', ['bump-only', 'default', 'bump-commit']
grunt.registerTask 'bump-@-minor', ['bump-only:minor', 'default', 'bump-commit']
grunt.registerTask 'bump-@-major', ['bump-only:major', 'default', 'bump-commit']
exampleOpenTasks = []
_(allExamplesOpen).each (v, key) ->
basicTask = "open:" + key
#register individual task (runs by itself)
grunt.registerTask key, ["fast", "clean:example", "connect:server", basicTask, "watch:all"]
exampleOpenTasks.push basicTask
# allExamplesTaskToRun = ["clean:example", "connect:server"].concat(['open:free-draw-polygons','open:example']).concat ['watch:all']
allExamplesTaskToRun = ["fast","clean:example", "connect:server"].concat(exampleOpenTasks).concat ['watch:all']
listWithQuotes = (collection, doLog = true) ->
last = collection.length - 1
all = ''
collection.forEach (t, i) ->
all += if i < last then "'#{t}'," else "'#{t}'"
if doLog
return log all
all
grunt.registerTask 'listExamples', showOpenType
grunt.registerTask 'listAllOpen', ->
showOpenType(options.open)
grunt.registerTask 'listAllExamplesTasks', ->
listWithQuotes exampleOpenTasks
grunt.registerTask 'allExamples', allExamplesTaskToRun
#to see all tasks available don't forget "grunt --help" !!!