@rootnative/cli 0.0.0-alpha.14 → 0.0.0-alpha.16
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/dist/index.mjs +3 -5
- package/llms.txt +2 -2
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -348,7 +348,7 @@ function getComponentNames(result) {
|
|
|
348
348
|
import path5 from "path";
|
|
349
349
|
var SINGLE_LINE_IMPORT_REGEX = /((?:import|export)\s+(?:type\s+)?(?:\{[^}]*\}|\*\s+as\s+\w+|[\w,\s]+)\s+from\s+)(['"])([^'"]+)\2/g;
|
|
350
350
|
var MULTI_LINE_IMPORT_REGEX = /((?:import|export)\s+(?:type\s+)?\{[\s\S]*?\}\s+from\s+)(['"])([^'"]+)\2/g;
|
|
351
|
-
var SHARED_ROOT_MODULES = /* @__PURE__ */ new Set(["safe-area"]);
|
|
351
|
+
var SHARED_ROOT_MODULES = /* @__PURE__ */ new Set(["safe-area", "elevation-shadow"]);
|
|
352
352
|
function isPrefixAlias(alias) {
|
|
353
353
|
return !alias.startsWith(".");
|
|
354
354
|
}
|
|
@@ -664,9 +664,8 @@ var TEMPLATE_CONFIGS = {
|
|
|
664
664
|
"package.json",
|
|
665
665
|
"app.json",
|
|
666
666
|
"tsconfig.json",
|
|
667
|
-
"babel.config.js",
|
|
668
667
|
".gitignore",
|
|
669
|
-
"index.
|
|
668
|
+
"index.ts",
|
|
670
669
|
"App.tsx"
|
|
671
670
|
],
|
|
672
671
|
dirs: ["assets"]
|
|
@@ -676,7 +675,6 @@ var TEMPLATE_CONFIGS = {
|
|
|
676
675
|
"package.json",
|
|
677
676
|
"app.json",
|
|
678
677
|
"tsconfig.json",
|
|
679
|
-
"babel.config.js",
|
|
680
678
|
".gitignore",
|
|
681
679
|
"app/_layout.tsx",
|
|
682
680
|
"app/index.tsx"
|
|
@@ -686,8 +684,8 @@ var TEMPLATE_CONFIGS = {
|
|
|
686
684
|
};
|
|
687
685
|
var TEMPLATE_BINARY_FILES = [
|
|
688
686
|
"assets/icon.png",
|
|
689
|
-
"assets/splash.png",
|
|
690
687
|
"assets/adaptive-icon.png",
|
|
688
|
+
"assets/splash.png",
|
|
691
689
|
"assets/favicon.png"
|
|
692
690
|
];
|
|
693
691
|
var TEMPLATE_OPTIONAL_TEXT_FILES = ["CLAUDE.md", "README.md"];
|
package/llms.txt
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @rootnative/cli — CLI for RootNative UI
|
|
2
2
|
|
|
3
|
-
> Version: 0.0.0-alpha.
|
|
3
|
+
> Version: 0.0.0-alpha.16
|
|
4
4
|
> Binary: `rootnative`
|
|
5
5
|
> Requirements: Node >=18
|
|
6
6
|
|
|
@@ -62,7 +62,7 @@ Creates `rootnative.json`:
|
|
|
62
62
|
"$schema": "https://rootnative.github.io/ui/schema.json",
|
|
63
63
|
"aliases": { "components": "@/components/ui", "lib": "@/lib" },
|
|
64
64
|
"registryUrl": "https://raw.githubusercontent.com/rootnative/ui",
|
|
65
|
-
"registryVersion": "v0.0.0-alpha.
|
|
65
|
+
"registryVersion": "v0.0.0-alpha.16"
|
|
66
66
|
}
|
|
67
67
|
```
|
|
68
68
|
|