Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

grunt-react-native

Package Overview
Dependencies
Maintainers
3
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-react-native

A grunt plugin for launching the React Native packager and bundle your files for relase

  • 2.2.1
  • unpublished
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
3
Weekly downloads
 
Created
Source

grunt-react-native Build Status npm

A grunt plugin for launching the React Native packager and bundle your files for release

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 react@^0.14.5 react-native@^0.24.1 grunt-react-native --save-dev

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

grunt.loadNpmTasks('grunt-react-native');

The "react_native" task

Overview

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

grunt.initConfig({
  react_native: {
    your_target: {
      options: {
        // Target-specific options go here.
      }
      // Target-specific files go here.
    },
  },
});

Options

options.minify

Type: Boolean Default value: false

Setting to true will minify the resulting bundle.

options.platform

Type: String Default value: The task's (target) name

Which platform the bundle is made for.

options.reset_cache

Type: Boolean Default value: false

Pass the reset cache option to react native packager (see https://github.com/facebook/react-native/issues/4968)

options.verbose

Type: Boolean Default value: false

Verbose mode.

options.watch

Type: Boolean Default value: false

Watch mode, this will launch the react native packager server for development.

Usage Examples

grunt.initConfig({
  react_native: {
    ios: {
      options: {
        minify: false,
        verbose: false,
        watch: false,
      },
      src: 'src/index.ios.js',
      dst: 'build/index.ios.bundle',
    },
    watch: {
      options: {
        verbose: false,
        watch: true,
      },
      src: 'src/', // The directory to watch and serve
    },
  },
});

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.

Release History

V 2.2.0 Transfer ownership from @alexmick to @feedly

V 2.1.4 Use peer dependencies

V 2.1.3 Update dependency management

V 2.1.2 Major release version bump because of ownership transfer to @alexmick

V 0.1.2 Include assets

Features :

  • Now bundles your assets as well

To do :

  • Find a more reliable way to test output files

V 0.1.1 Fix tests

Fixes :

  • Failing tests (react-native's fault)

To do :

  • Find a more reliable way to test output files
  • Manage assets destination

V 0.1.0 Initial Release

Supports :

  • Bundle task
  • Watch task

To do :

  • Manage assets destination

Keywords

FAQs

Package last updated on 10 Apr 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc