0.0.2 • Published 9 years ago

grunt-go-compile v0.0.2

Weekly downloads
1
License
-
Repository
github
Last release
9 years ago

grunt-go-compile GitHub version

The plugin is under development.

The grunt-go-compile plugin give the you one of the way to provide Go files to actual Go compile to run and build in the form of grunt tasks.

Getting Started

This plugin requires Grunt ~0.4.5

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-go-compile --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-go-compile');

The "go" task

Overview

In your project's Gruntfile, add a section named go to the data object passed into grunt.initConfig().

grunt.initConfig({
  go: {
    compile: {
      options: {
        // Task-specific options go here.
      },
      files: {
        // Target-specific file lists and/or options go here.
      }
    }    
  }
});

Options

options.separator

Type: String Default value: ', '

A string value that is used to do something with whatever.

Usage Examples

grunt.initConfig({
  go: {
    compile: {
      options: {},
      files: {
        'tmp/HelloWorld.go': 'test/fixtures/HelloWorld.go'
      }
    }
  }
});

Custom Options

grunt.initConfig({
  go: {
    options: {
      separator: ': '
    },
    files: {
      'dest/default_options': ['src/testing', 'src/123'],
    },
  },
});

Author & Contributors

Developed & maintained by author: Ashwin Hegde Follow me at: github | Linkedin | Twitter

We really appreciate all kind of contributions. Special thanks to contributors for using and supporting grunt-go-compile.

To request a feature or you find any typo errors, enhancements or questions; please feel free to post it on following link, or vote for the ones that are already registered. Tracking: https://github.com/hegdeashwin/grunt-go-compile/issues

License

The MIT License (MIT) Copyright (c) 2015 Ashwin Hegde