Created
June 18, 2013 05:49
-
-
Save DekusDenial/5802926 to your computer and use it in GitHub Desktop.
Gruntfile for brackets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Copyright (c) 2013 Adobe Systems Incorporated. All rights reserved. | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining a | |
* copy of this software and associated documentation files (the "Software"), | |
* to deal in the Software without restriction, including without limitation | |
* the rights to use, copy, modify, merge, publish, distribute, sublicense, | |
* and/or sell copies of the Software, and to permit persons to whom the | |
* Software is furnished to do so, subject to the following conditions: | |
* | |
* The above copyright notice and this permission notice shall be included in | |
* all copies or substantial portions of the Software. | |
* | |
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | |
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | |
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | |
* DEALINGS IN THE SOFTWARE. | |
* | |
*/ | |
/*global module, require*/ | |
module.exports = function (grunt) { | |
'use strict'; | |
var common = require("./tasks/lib/common")(grunt); | |
// Project configuration. | |
grunt.initConfig({ | |
pkg : grunt.file.readJSON("package.json"), | |
meta : { | |
src : [ | |
'src/**/*.js', | |
'!src/thirdparty/**', | |
'!src/widgets/bootstrap-*.js', | |
'!src/extensions/**/unittest-files/**/*.js', | |
'!src/extensions/**/thirdparty/**/*.js', | |
'!src/extensions/dev/**', | |
'!src/extensions/disabled/**', | |
'!**/node_modules/**/*.js', | |
'!src/**/*-min.js', | |
'!src/**/*.min.js' | |
], | |
test : [ | |
'test/**/*.js', | |
'!test/perf/*-files/**/*.js', | |
'!test/spec/*-files/**/*.js', | |
'!test/smokes/**', | |
'!test/temp/**', | |
'!test/thirdparty/**', | |
'!test/**/node_modules/**/*.js' | |
], | |
grunt: [ | |
'Gruntfile.js', | |
'tasks/**/*.js' | |
], | |
/* specs that can run in phantom.js */ | |
specs : [ | |
'test/spec/CommandManager-test.js', | |
//'test/spec/LanguageManager-test.js', | |
//'test/spec/PreferencesManager-test.js', | |
'test/spec/ViewUtils-test.js' | |
] | |
}, | |
watch: { | |
all : { | |
files: ['**/*', '!**/node_modules/**'], | |
tasks: ['jshint'] | |
}, | |
grunt : { | |
files: ['<%= meta.grunt %>', 'tasks/**/*'], | |
tasks: ['jshint:grunt'] | |
}, | |
src : { | |
files: ['<%= meta.src %>', 'src/**/*'], | |
tasks: ['jshint:src'] | |
}, | |
test : { | |
files: ['<%= meta.test %>', 'test/**/*'], | |
tasks: ['jshint:test'] | |
} | |
}, | |
/* FIXME (jasonsanjose): how to handle extension tests */ | |
jasmine : { | |
src : 'undefined.js', /* trick the default runner to run without importing src files */ | |
options : { | |
junit : { | |
path: 'test/results', | |
consolidate: true | |
}, | |
specs : '<%= meta.specs %>', | |
/* Keep in sync with test/SpecRunner.html dependencies */ | |
vendor : [ | |
'src/thirdparty/jquery-1.7.js', | |
'src/thirdparty/CodeMirror2/lib/codemirror.js', | |
'src/thirdparty/CodeMirror2/lib/util/dialog.js', | |
'src/thirdparty/CodeMirror2/lib/util/searchcursor.js', | |
'src/thirdparty/CodeMirror2/addon/edit/closetag.js', | |
'src/thirdparty/CodeMirror2/addon/selection/active-line.js', | |
'src/thirdparty/mustache/mustache.js', | |
'src/thirdparty/path-utils/path-utils.min', | |
'src/thirdparty/less-1.3.0.min.js' | |
], | |
helpers : [ | |
'test/spec/PhantomHelper.js' | |
], | |
template : require('grunt-template-jasmine-requirejs'), | |
templateOptions: { | |
requireConfig : { | |
baseUrl: 'src', | |
paths: { | |
'test' : '../test', | |
'perf' : '../test/perf', | |
'spec' : '../test/spec', | |
'text' : 'thirdparty/text/text', | |
'i18n' : 'thirdparty/i18n/i18n' | |
} | |
} | |
} | |
} | |
}, | |
'jasmine-node': { | |
run: { | |
spec: 'src/extensibility/node/spec/' | |
} | |
}, | |
jshint: { | |
all: [ | |
'<%= meta.grunt %>', | |
'<%= meta.src %>', | |
'<%= meta.test %>' | |
], | |
grunt: '<%= meta.grunt %>', | |
src: '<%= meta.src %>', | |
test: '<%= meta.test %>', | |
/* use strict options to mimic JSLINT until we migrate to JSHINT in Brackets */ | |
options: { | |
jshintrc: '.jshintrc' | |
} | |
}, | |
shell: { | |
repo: grunt.option("shell-repo") || "../brackets-shell", | |
mac: "<%= shell.repo %>/installer/mac/staging/<%= pkg.name %>.app", | |
win: "<%= shell.repo %>/installer/win/staging/<%= pkg.name %>.exe" | |
} | |
}); | |
// load dependencies | |
grunt.loadTasks('tasks'); | |
grunt.loadNpmTasks('grunt-contrib-jasmine'); | |
grunt.loadNpmTasks('grunt-contrib-jshint'); | |
grunt.loadNpmTasks('grunt-contrib-watch'); | |
grunt.loadNpmTasks('grunt-contrib-jasmine-node'); | |
// task: install | |
grunt.registerTask('install', ['write-config']); | |
// task: test | |
//grunt.registerTask('test', ['jshint', 'jasmine']); | |
//grunt.registerTask('test', ['jshint', 'jasmine-node']); | |
grunt.registerTask('test', ['jshint']); | |
// task: set-sprint | |
// Update sprint number in package.json and rewrite src/config.json | |
grunt.registerTask('set-sprint', ['update-sprint-number', 'write-config']); | |
// Default task. | |
grunt.registerTask('default', ['test']); | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "Brackets", | |
"version": "0.27.0-0", | |
"apiVersion": "0.27.0", | |
"homepage": "http://brackets.io", | |
"issues": { | |
"url": "http://github.com/adobe/brackets/issues" | |
}, | |
"repository": { | |
"type": "git", | |
"url": "https://github.com/adobe/brackets.git", | |
"branch": "", | |
"SHA": "" | |
}, | |
"devDependencies": { | |
"grunt": "0.4.1", | |
"jasmine-node": "1.7.1", | |
"grunt-contrib-jasmine-node": "0.1.0", | |
"grunt-cli": "0.1.6", | |
"phantomjs": "1.9.0-1", | |
"grunt-lib-phantomjs": "0.3.0", | |
"grunt-contrib-jshint": "0.2.0", | |
"grunt-contrib-watch": "0.3.1", | |
"grunt-contrib-jasmine": "0.4.2", | |
"grunt-template-jasmine-requirejs": "0.1.0", | |
"q": "0.9.2" | |
}, | |
"scripts": { | |
"postinstall": "grunt install", | |
"test": "grunt test" | |
}, | |
"licenses": [ | |
{ | |
"type": "MIT", | |
"url": "https://github.com/adobe/brackets/blob/master/LICENSE" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment