grunt-requirejs-transformconfig

0.0.4 • Public • Published

grunt-requirejs-transformconfig

Grunt plugin for transforming existing requirejs configuration file.

Getting Started

This plugin requires Grunt.

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-requirejs-transformconfig --save-dev

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

grunt.loadNpmTasks('grunt-requirejs-transformconfig');

The "requirejs_config" task

Overview

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

grunt.initConfig({
  "requirejs-transformconfig": {
    options: {
      transform: function(config){
        config.baseUrl = "/dist";
        return config;
      }
    },
 
    your_target: {
      // Your RequireJS config file.
      src: 'main.js',
      // Transformed output file.
      dest: 'dist/main.js'
    },
  },
})

Options

options.transform

Type: Function Default value: function(config){ return config; }

Release History

(Nothing yet)

License

Copyright (c) 2013 Garry Yao. Licensed under the MIT license.

Package Sidebar

Install

npm i grunt-requirejs-transformconfig

Weekly Downloads

0

Version

0.0.4

License

none

Last publish

Collaborators

  • garryyao