0.1.4 • Published 11 years ago

grunt-pjs v0.1.4

Weekly downloads
13
License
-
Repository
github
Last release
11 years ago

grunt-pjs

Preprocess JS build task for Grunt

Getting Started

npm install grunt-pjs --save-dev

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

grunt.loadNpmTasks('grunt-pjs');

The "pjs" task

Overview

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

grunt.initConfig({
  pjs: {
    // All defaults are shown below
    options: {
      // cpp version
      cppVersion: 4.8,
      // cpp cwd
      basePath: null,
      // include search paths
      includePaths: [],
      // include files
      includeFiles: [],
      // macro definations, string or { name, value }
      definations: [],
      // true to enable source map, will be named as file.dest + '.map'
      sourceMap: false,
      // source map's source root
      sourceRoot: null,
      // other args (in array) for cpp
      args: null
    },
    your_target: {
      // Target-specific file lists and/or options go here.
    }
  }
});
0.1.4

11 years ago

0.1.3

11 years ago

0.1.2

11 years ago

0.1.1

11 years ago

0.1.0

11 years ago