30 строки
975 B
JavaScript
30 строки
975 B
JavaScript
#!/usr/bin/env node
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
module.exports = function (grunt) {
|
|
'use strict';
|
|
|
|
grunt.config('requirejs', {
|
|
dist: {
|
|
// Options: https://github.com/jrburke/r.js/blob/master/build/example.build.js
|
|
options: {
|
|
// `name` and `out` are set by grunt-usemin
|
|
baseUrl: '<%= yeoman.app %>/scripts',
|
|
optimize: 'none',
|
|
// TODO: Figure out how to make sourcemaps work with grunt-usemin
|
|
// https://github.com/yeoman/grunt-usemin/issues/30
|
|
//generateSourceMaps: true,
|
|
// required to support SourceMaps
|
|
// http://requirejs.org/docs/errors.html#sourcemapcomments
|
|
preserveLicenseComments: false,
|
|
useStrict: true,
|
|
wrap: true,
|
|
stubModules: ['text', 'stache']
|
|
}
|
|
}
|
|
});
|
|
};
|