mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-10-06 19:26:55 +08:00
16 lines
No EOL
341 B
JavaScript
16 lines
No EOL
341 B
JavaScript
module.exports = function(grunt) {
|
|
|
|
grunt.initConfig({
|
|
pkg: grunt.file.readJSON('package.json'),
|
|
connect: {
|
|
example: {
|
|
port: 1337,
|
|
base: 'output'
|
|
}
|
|
}
|
|
});
|
|
|
|
grunt.loadNpmTasks('grunt-connect');
|
|
grunt.registerTask('default', 'connect:example');
|
|
|
|
}; |