@ux7suit/create-ux7-app 0.1.1 → 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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/bin.mjs +3 -3
  3. package/package.json +4 -4
package/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  UX7 Suit platformu için Module Federation tabanlı bir demo/app scaffold aracı.
4
4
 
5
5
  ```
6
- npm create ux7-app@latest my-app
6
+ npx @ux7suit/create-ux7-app@latest my-app
7
7
  cd my-app
8
8
  npm install
9
9
  npm run dev
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: npm create ux7-app@latest my-app [-- --title "Görünen ad"]
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: npm create ux7-app@latest <klasör-adı> [-- --title "Görünen Ad"]
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
- npm create ux7-app@latest stok-sayim -- --title "Stok Sayım"
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,11 +1,11 @@
1
1
  {
2
2
  "name": "@ux7suit/create-ux7-app",
3
- "version": "0.1.1",
4
- "description": "UX7 Suit platformu için Module Federation tabanlı demo/app scaffold aracı. `npm create ux7-app@latest my-app` ile çalışır.",
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": "UNLICENSED",
6
+ "license": "MIT",
7
7
  "bin": {
8
- "@ux7suit/create-ux7-app": "./bin.mjs"
8
+ "create-ux7-app": "./bin.mjs"
9
9
  },
10
10
  "files": [
11
11
  "bin.mjs",