1.0.13 • Published 3 years ago

@native-base/babel-plugin v1.0.13

Weekly downloads
-
License
ISC
Repository
-
Last release
3 years ago

@native-base/babel-plugin

Official Babel Plugin for NativeBase Build-Time theme resolution.

Installation -

Using yarn :

yarn add -D @native-base/babel-plugin

Using npm :

npm install --save-dev @native-base/babel-plugin

Usage -

Simply add this plugin in your App's babel.config.js :

module.exports = function (api) {
  api.cache(true);
  return {
    presets: [...YOUR_APP_PRESETS],
    plugins: ["@native-base/babel-plugin",...YOUR_OTHER_PLUGINS],
  };
};

Also in dev env you will have to delete the cache generated on your root in the folder .native-base . You can simply add rm -rf .native-base in your dev script.

"scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "other-scripts":"yarn something",
    "dev": "rm -rf .native-base && yarn start",
  }

To setup the Development environment -

  • clone this Repo
  • yarn or npm install
  • cd example && yarn && cd .. or cd example && npm install && cd ..
  • yarn dev:web or npm run dev:web to run the example app make your changes in index.js.
1.0.13

3 years ago

1.0.11

3 years ago

1.0.10

3 years ago

1.0.12

3 years ago

1.0.9

3 years ago

1.0.8

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago

1.0.0-rc.1

3 years ago

1.0.0-rc.0

3 years ago