@ux7suit/create-ux7-app 0.1.0 → 0.1.2
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 +1 -1
- package/bin.mjs +3 -3
- package/package.json +3 -3
package/README.md
CHANGED
package/bin.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
// create-ux7-app — UX7 Suit platformu için Module Federation demo/app şablonu scaffold eder.
|
|
3
|
-
// Kullanım:
|
|
3
|
+
// Kullanım: npx @ux7suit/create-ux7-app@latest my-app [-- --title "Görünen ad"]
|
|
4
4
|
//
|
|
5
5
|
// scripts/create-app.mjs'in (UX7 monorepo içi, kendi ekip için) genel/dış geliştirici
|
|
6
6
|
// karşılığıdır. Aradaki fark: bu paket monorepo DIŞINDA, herhangi bir müşteri/3. parti
|
|
@@ -15,10 +15,10 @@ const HERE = path.dirname(fileURLToPath(import.meta.url))
|
|
|
15
15
|
const TEMPLATE_DIR = path.join(HERE, 'template')
|
|
16
16
|
|
|
17
17
|
function usage() {
|
|
18
|
-
console.log(`Kullanım:
|
|
18
|
+
console.log(`Kullanım: npx @ux7suit/create-ux7-app@latest <klasör-adı> [-- --title "Görünen Ad"]
|
|
19
19
|
|
|
20
20
|
Örnek:
|
|
21
|
-
|
|
21
|
+
npx @ux7suit/create-ux7-app@latest stok-sayim -- --title "Stok Sayım"
|
|
22
22
|
|
|
23
23
|
<klasör-adı> aynı zamanda uygulama kimliği (app id) olarak kullanılır:
|
|
24
24
|
- Endpoint kökü: /<app-id>/records
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ux7suit/create-ux7-app",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "UX7 Suit platformu için Module Federation tabanlı demo/app scaffold aracı. `
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"description": "UX7 Suit platformu için Module Federation tabanlı demo/app scaffold aracı. `npx @ux7suit/create-ux7-app@latest my-app` ile çalışır.",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"license": "
|
|
6
|
+
"license": "MIT",
|
|
7
7
|
"bin": {
|
|
8
8
|
"create-ux7-app": "./bin.mjs"
|
|
9
9
|
},
|