nativescript-10hook-release-info

Set release info to json


Keywords
nativescript, hooks, hook, build, release, info
License
BSD-4-Clause
Install
npm install nativescript-10hook-release-info@1.0.0

Documentation

nativescript-10hook-release-info

Add release info to the app

Detect app in release (production) mode or not

Install

tns plugin add nativescript-10hook-release-info

Usage

  • build or prepare app

    • will create release-info.json in app directory
    • example
    {
        "NODE_ENV": "development",
        "release": false
    }
    
  • in app

    const { release } = require('./release-info.json');
    
    console.log(release ? 'Production mode' : 'Debug mode');
    
  • Inspired by nativescript-hook-debug-production