@tamer4lynx/cli 0.0.14 → 0.0.15
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.
- package/README.md +18 -0
- package/dist/index.js +542 -434
- package/package.json +9 -1
package/README.md
CHANGED
|
@@ -6,6 +6,24 @@ Inspired by [Expo](https://expo.dev) and [Expo Go](https://expo.dev/go).
|
|
|
6
6
|
|
|
7
7
|
**Standalone app generation** follows patterns from [Lynx Explorer](https://github.com/lynx-family/lynx/tree/develop/explorer), patched for Maven-based standalone builds (no monorepo required). See [lynx#695](https://github.com/lynx-family/lynx/issues/695) for context.
|
|
8
8
|
|
|
9
|
+
## Running the CLI from this repo
|
|
10
|
+
|
|
11
|
+
Node cannot execute `index.ts` directly (`import './src/android/create'` has no file extension). Use one of:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npm install
|
|
15
|
+
npm run build
|
|
16
|
+
node dist/index.js init
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
Or run the TypeScript entry with **tsx** (no build):
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
npm install
|
|
23
|
+
npm run cli -- init
|
|
24
|
+
# same as: npx tsx index.ts init
|
|
25
|
+
```
|
|
26
|
+
|
|
9
27
|
## Installation
|
|
10
28
|
|
|
11
29
|
All Tamer packages are published under the `@tamer4lynx` scope on npm. Install the CLI globally (use `@prerelease` for latest):
|