|
@@ -1,7 +1,8 @@
|
|
|
'use strict';
|
|
|
|
|
|
module.exports = function (grunt) {
|
|
|
- var path = require('path');
|
|
|
+ var path = require('path'),
|
|
|
+ helpers = require('amber-dev/lib/helpers');
|
|
|
|
|
|
// These plugins provide necessary tasks.
|
|
|
grunt.loadNpmTasks('grunt-contrib-clean');
|
|
@@ -10,8 +11,8 @@ module.exports = function (grunt) {
|
|
|
grunt.loadNpmTasks('amber-dev');
|
|
|
|
|
|
// Default task.
|
|
|
- grunt.registerTask('default', ['amberc:all']);
|
|
|
- grunt.registerTask('test', ['amberc:test_runner', 'execute:test_runner', 'clean:test_runner']);
|
|
|
+ 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']);
|
|
|
|
|
@@ -20,16 +21,15 @@ module.exports = function (grunt) {
|
|
|
// Metadata.
|
|
|
// pkg: grunt.file.readJSON(''),
|
|
|
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',
|
|
|
+ '<%= 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"),
|
|
|
- library_dirs: ['src', 'bower_components/amber/contrib/src', 'bower_components/domite/src'],
|
|
|
- closure_jar: ''
|
|
|
+ configFile: "config.js"
|
|
|
},
|
|
|
all: {
|
|
|
src: [
|
|
@@ -37,44 +37,65 @@ module.exports = function (grunt) {
|
|
|
'src/Silk-Tests.st' // list all tests in dependency order
|
|
|
],
|
|
|
amd_namespace: 'silk',
|
|
|
- libraries: ['SUnit', 'DOMite']
|
|
|
- },
|
|
|
- test_runner: {
|
|
|
- src: ['node_modules/amber-dev/lib/Test.st'],
|
|
|
- libraries: [
|
|
|
- /* add dependencies packages here */
|
|
|
- 'Silk', /* add other code-to-test packages here */
|
|
|
- 'SUnit',
|
|
|
- 'Silk-Tests' /* add other test packages here */
|
|
|
- ],
|
|
|
- main_class: 'NodeTestRunner',
|
|
|
- output_name: 'test_runner'
|
|
|
+ libraries: ['amber_core/SUnit', 'amber/domite/DOMite', 'amber/domite/DOMite-Tests']
|
|
|
}
|
|
|
},
|
|
|
|
|
|
amdconfig: {app: {dest: 'config.js'}},
|
|
|
|
|
|
requirejs: {
|
|
|
- deploy: {options: {
|
|
|
- mainConfigFile: "config.js",
|
|
|
- onBuildWrite: function (moduleName, path, contents) {
|
|
|
- return moduleName === "config" ? contents + "\nrequire.config({map:{'*':{app:'deploy'}}});" : contents;
|
|
|
- },
|
|
|
- pragmas: {
|
|
|
- excludeIdeData: true,
|
|
|
- excludeDebugContexts: true
|
|
|
- },
|
|
|
- include: ['config', 'node_modules/requirejs/require', 'deploy'],
|
|
|
- out: "the.js"
|
|
|
- }},
|
|
|
- devel: {options: {
|
|
|
- mainConfigFile: "config.js",
|
|
|
- onBuildWrite: function (moduleName, path, contents) {
|
|
|
- return moduleName === "config" ? contents + "\nrequire.config({map:{'*':{app:'devel'}}});" : contents;
|
|
|
- },
|
|
|
- include: ['config', 'node_modules/requirejs/require'],
|
|
|
- out: "the.js"
|
|
|
- }}
|
|
|
+ options: {
|
|
|
+ useStrict: true
|
|
|
+ },
|
|
|
+ deploy: {
|
|
|
+ options: {
|
|
|
+ mainConfigFile: "config.js",
|
|
|
+ rawText: {
|
|
|
+ "amber/Platform": '/*stub*/',
|
|
|
+ "app": 'define(["deploy"],function(x){return x});define("amber/Platform",["amber_core/Platform-Browser"],{});'
|
|
|
+ },
|
|
|
+ pragmas: {
|
|
|
+ excludeIdeData: true,
|
|
|
+ excludeDebugContexts: true
|
|
|
+ },
|
|
|
+ include: ['config', 'node_modules/requirejs/require', 'app'],
|
|
|
+ out: "the.js"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ devel: {
|
|
|
+ options: {
|
|
|
+ mainConfigFile: "config.js",
|
|
|
+ rawText: {
|
|
|
+ "amber/Platform": '/*stub*/',
|
|
|
+ "app": 'define(["devel"],function(x){return x});define("amber/Platform",["amber_core/Platform-Browser"],{});'
|
|
|
+ },
|
|
|
+ include: ['config', '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();
|
|
|
+ amber.globals.NodeTestRunner._main();
|
|
|
+ });
|
|
|
+ } + "());"
|
|
|
+ },
|
|
|
+ paths: {"amber_devkit": helpers.libPath},
|
|
|
+ pragmas: {
|
|
|
+ excludeIdeData: true
|
|
|
+ },
|
|
|
+ include: ['config-node', 'app'],
|
|
|
+ insertRequire: ['app'],
|
|
|
+ optimize: "none",
|
|
|
+ wrap: helpers.nodeWrapperWithShebang,
|
|
|
+ out: "test_runner.js"
|
|
|
+ }
|
|
|
+ }
|
|
|
},
|
|
|
|
|
|
execute: {
|