0.1.4 • Published 9 years ago

grunt-manifoldjs v0.1.4

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

grunt-manifold

Generate chosted apps across platforms and devices

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-manifoldjs --save-dev

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

grunt.loadNpmTasks('grunt-manifoldjs');

The "manifold" task

Overview

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

grunt.initConfig({
  manifoldjs: {
    options: {
      // Task-specific options go here.
    }
  },
});

Options

options.output

  • Type: String
  • Default value: 'generatedApps'

The path to the output path.

options.platforms

  • Type: Array
  • Default value: '['chrome', 'firefox', 'android', 'ios', 'windows10', 'web']'

An array of platforms that will be created by ManifoldJs based on the manifest.json. Posibilities: 'chrome', 'firefox', 'android', 'ios', 'windows10', 'windows81', 'web'.

options.buildProjects

  • Type: Boolean
  • Default value: 'buildProjects'

If true, then the iOS, Android and Windows81 projects will be builded.

options.site

  • Type: String
  • Example: 'http://www.manifoldjs.com'

The target site url.

options.manifestFilePath

  • Type: String
  • Example: 'www/manifest.json'

The path to the local manifest.

Usage Examples

Default Options

In this example, the default options are used.

grunt.initConfig({
  manifoldjs: {
    options: {
      manifestFilePath: 'manifest.json'
    }
  },
});

Custom Options

In this example, custom options are used.

grunt.initConfig({
  manifoldjs: {
    options: {
      output: 'outputPath',
      platforms: ['chrome', 'firefox', 'windows10', 'web'],
      buildProjects: true,
      site : 'http://www.manifoldjs.com',
      manifestFilePath: 'www/manifest.json'
    }
  },
});

Release History

(Nothing yet)

0.1.4

9 years ago

0.1.3

9 years ago

0.1.2

9 years ago

0.1.1

9 years ago

0.1.0

9 years ago