New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

babel-plugin-tipsi-flavors

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

babel-plugin-tipsi-flavors

Babel plugin helps set imports with provided order

  • 1.3.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

image

babel-plugin-tipsi-flavors

Support build flavors for React Native applications

This plugin helps rewrite you imports by rules from environment variable FLAVORS by default
Look into tests results while FLAVORS=custom,tipsi,whitelabel

# destination folder structurels -la ./files
folder
module.custom.js
module2.tipsi.js
module3.whitelabel.js
module4.js
module5.tipsi.js
module6.custom.js
module7.js
module8.custom.js
// testSuite.js

import babel from 'babel-core'
const module9 = require('./files/folder')
import module from './files/module'
import module2 from './files/module2'
import module3 from './files/module3'
import module4 from './files/module4'
import module5 from './files/module5'
const module6 = require('./files/module6')
const module7 = require('./files/module7.js')
const module8 = require('./files/module8.js')
// transpiled code

import babel from 'babel-core'
const module9 = require('./files/folder')
import module from './files/module.custom'
import module2 from './files/module2.tipsi'
import module3 from './files/module3.whitelabel'
import module4 from './files/module4'
import module5 from './files/module5.tipsi'
const module6 = require('./files/module6.custom')
const module7 = require('./files/module7.js')
const module8 = require('./files/module8.custom.js')

Install

❯ npm i babel-plugin-tipsi-flavors --save-dev
# .babelrc

{
  ...
  "plugins": ["tipsi-flavors"]
}

Run tests

FLAVORS=custom,tipsi npm run ci

Usage

React-Native while development
❯ FLAVORS=custom,tipsi,whitelabel npm start

❯ react-native run-ios (run-android)
React-Native while production
❯ FLAVORS=custom,tipsi,whitelabel npm run build:ios
# or
❯ FLAVORS=custom,tipsi,whitelabel npm run build:android 
Non React-Native environments as usual, just add plugin into .babelrc
If you want to set custom environment variable just pass it into .babelrc
# .babelrc

{
  ...
  "plugins": [["tipsi-flavors", {"env": "MY_CUSTOM_VAR"}]]
}
And run it like:
❯ MY_CUSTOM_VAR=custom,tipsi,whitelabel npm start

❯ react-native run-ios (run-android)
If you don't like environment variables, just use .babelrc to pass FLAVORS
But remember that environment variables has higher priority
# .babelrc

{
  ...
  "plugins": [["tipsi-flavors", {"flavors": ["custom", "tipsi"]}]]
}

Keywords

FAQs

Package last updated on 12 Dec 2018

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