Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
80665 views
1
# Exports an object that defines
2
# all of the paths & globs that the project
3
# is concerned with.
4
#
5
# The "configure" task will require this file and
6
# then re-initialize the grunt config such that
7
# directives like <config:files.js.app> will work
8
# regardless of the point you're at in the build
9
# lifecycle.
10
#
11
# To see the default definitions for all of Lineman's file paths and globs, look at:
12
# https://github.com/testdouble/lineman/blob/master/config/files.coffee
13
#
14
15
lineman = require(process.env["LINEMAN_MAIN"])
16
grunt = lineman.grunt
17
18
module.exports = lineman.config.extend "files",
19
js:
20
uncompressedDist: "dist/#{grunt.file.readJSON('package.json').name}.js"
21
22
23