nx-react-native-cli 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +29 -0
  2. package/package.json +2 -1
package/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # Nx React Native Workspace Generator
2
+
3
+ [![npm version](https://badge.fury.io/js/nx-react-native-cli.svg)](https://www.npmjs.com/package/nx-react-native-cli)
4
+
5
+ ## 📦 Introduction
6
+
7
+ This NPM library package allows you to effortlessly generate a Nx workspace with a React Native preset. It includes a carefully curated set of tools and libraries to streamline your development process.
8
+
9
+ ## 🚀 Features
10
+
11
+ - **TypeScript**: Strongly typed JavaScript for better code quality.
12
+ - **TailwindCSS via TWRNC**: Utility-first CSS framework for fast UI development.
13
+ - **React Navigation**: Easy navigation solutions for your apps.
14
+ - **React Native Reanimated**: Powerful animations for smooth user experiences.
15
+ - **React Native SVG**: SVG support for your React Native projects.
16
+ - **React Native Dotenv**: Load environment variables from a `.env` file.
17
+ - **Zustand and Jotai**: State management libraries for simpler state handling.
18
+ - **MMKV**: Efficient key-value storage for React Native.
19
+ - **React Query**: Data fetching and state synchronization for server-state.
20
+ - **Zod**: TypeScript-first schema declaration and validation library.
21
+ - **React Hook Forms**: Performant, flexible, and extensible forms with easy-to-use validation.
22
+ - **Fastlane Support**: Automate building and publishing your apps to Firebase App Distribution and TestFlight.
23
+
24
+
25
+ <h2 id="🛠-usage">🛠 Usage</h2>
26
+ <p>Generate a new Nx workspace with the React Native preset:</p>
27
+ <pre><code class="language-bash">npx nxrn create
28
+ </code></pre>
29
+
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "nx-react-native-cli",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "A react native starter (with NX) cli script",
5
5
  "main": "./src/index.js",
6
6
  "type": "module",
7
7
  "files": [
8
8
  "lib",
9
+ "README.md",
9
10
  "package.json"
10
11
  ],
11
12
  "bin": {