@base44/app-plugin-commerce 0.1.7 → 0.1.8

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 CHANGED
@@ -76,7 +76,7 @@ From your existing Base44 app:
76
76
  4. **Confirm UI deps** — `sonner`, `recharts` and `react-markdown` all ship with the default Base44 template and are the only ones the admin needs, so usually there is **nothing to install**. Read your app's `package.json` first and install *only* the names missing from it — never re-install a package that is already a dependency:
77
77
  ```bash
78
78
  grep -E '"(sonner|recharts|react-markdown)"' package.json # all three listed → skip the install
79
- npm i <only the missing names>
79
+ npx npq install <only the missing names> # npq audits the package before npm installs it
80
80
  ```
81
81
  See [`src/commerce/admin/README.md`](./src/commerce/admin/README.md) for the exact shadcn component list.
82
82
  5. **Mount the admin router** in your app:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@base44/app-plugin-commerce",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "Base44 Commerce plugin — entities, backend functions, shared commerce engine, admin UI and the commerce skill, shipped as copyable source",
5
5
  "keywords": [
6
6
  "base44",
@@ -19,7 +19,7 @@ Tailwind + shadcn/ui + React Router) to get a full store back office.
19
19
 
20
20
  ```bash
21
21
  grep -E '"(sonner|recharts|react-markdown)"' package.json # all three listed → skip the install
22
- npm i <only the missing names>
22
+ npx npq install <only the missing names> # npq audits the package before npm installs it
23
23
  ```
24
24
 
25
25
  4. Mount the app in your router: