123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- 'use strict';
- module.exports = function (grunt) {
- // These plugins provide necessary tasks.
- grunt.loadNpmTasks('grunt-contrib-clean');
- grunt.loadNpmTasks('grunt-contrib-requirejs');
- grunt.loadNpmTasks('grunt-execute');
- grunt.loadNpmTasks('amber-dev');
- var path = require('path'),
- helpers = require('amber-dev').helpers;
- // Default task.
- grunt.registerTask('default', ['amdconfig:app', 'amberc:all']);
- grunt.registerTask('test', ['amdconfig:app', 'requirejs:test_runner', 'execute:test_runner', 'clean:test_runner']);
- grunt.registerTask('devel', ['amdconfig:app', 'requirejs:devel']);
- grunt.registerTask('deploy', ['amdconfig:app', 'requirejs:deploy']);
- // Project configuration.
- grunt.initConfig({
- // Metadata.
- // pkg: grunt.file.readJSON('{%= amberjson %}'),
- banner: '/*! <%= pkg.title || pkg.name %> - v<%= pkg.version %> - ' +
- '<%= grunt.template.today("yyyy-mm-dd") %>\n' +
- '<%= pkg.homepage ? "* " + pkg.homepage + "\\n" : "" %>' +
- '* Copyright (c) <%= grunt.template.today("yyyy") %> <%= pkg.author.name %>;' +
- ' Licensed <%= _.pluck(pkg.licenses, "type").join(", ") %> */\n',
- // task configuration
- amberc: {
- options: {
- amber_dir: path.join(__dirname, "bower_components", "amber"),
- configFile: "config.js"
- },
- all: {
- src: [
- 'src/{%= name %}.st', // list all sources in dependency order
- 'src/{%= name %}-Tests.st' // list all tests in dependency order
- ],
- amd_namespace: '{%= namespace %}',
- libraries: ['amber_core/SUnit', 'amber/web/Web', 'silk/Silk']
- }
- },
- amdconfig: {app: {dest: 'config.js'}},
- requirejs: {
- options: {
- useStrict: true
- },
- deploy: {
- options: {
- mainConfigFile: "config.js",
- rawText: {
- "amber/compatibility": "/*stub*/",
- "amber/Platform": "/*stub*/",
- "app": 'define(["deploy"],function(x){return x});'
- },
- pragmas: {
- excludeIdeData: true,
- excludeDebugContexts: true
- },
- include: ['config', 'config-browser', 'node_modules/requirejs/require', 'app', 'amber/lazypack'],
- optimize: "uglify2",
- out: "the.js"
- }
- },
- devel: {
- options: {
- mainConfigFile: "config.js",
- rawText: {
- "amber/compatibility": "/*stub*/",
- "amber/Platform": "/*stub*/",
- "app": 'define(["devel"],function(x){return x});'
- },
- include: ['config', 'config-browser', 'node_modules/requirejs/require', 'app'],
- exclude: ['devel'],
- out: "the.js"
- }
- },
- test_runner: {
- options: {
- mainConfigFile: "config.js",
- rawText: {
- "app": "(" + function () {
- define(["testing", "amber_devkit/NodeTestRunner"], function (amber) {
- amber.initialize().then(function () {
- amber.globals.NodeTestRunner._main();
- });
- });
- } + "());"
- },
- paths: {"amber_devkit": helpers.libPath},
- pragmas: {
- excludeIdeData: true
- },
- include: ['config-node', 'app', 'amber/lazypack'],
- insertRequire: ['app'],
- optimize: "none",
- wrap: helpers.nodeWrapperWithShebang,
- out: "test_runner.js"
- }
- }
- },
- execute: {
- test_runner: {
- src: ['test_runner.js']
- }
- },
- clean: {
- test_runner: ['test_runner.js']
- }
- });
- };
|