UNPKG
random-strings
Version:
latest (0.0.1)
0.0.1
Fast, beautiful, unique random Strings for node.
andreaspizsa/node-random-strings
random-strings
/
Gruntfile.coffee
14 lines
(11 loc)
•
274 B
text/coffeescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module
.exports = (grunt) ->
require
(
'load-grunt-tasks'
) grunt grunt.initConfig
coffee:
compile:
expand:
true
flatten:
true
src:
[
'src/*.coffee'
]
dest:
'dist'
ext:
'.js'
grunt.registerTask
'default'
, [
'coffee'
]