@forgecart/cli 2.1.1 → 2.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forgecart/cli",
3
- "version": "2.1.1",
3
+ "version": "2.1.2",
4
4
  "type": "module",
5
5
  "description": "CLI for scaffolding and operating ForgeCart channel storefronts",
6
6
  "bin": {
@@ -37,7 +37,7 @@ never reaches the browser.
37
37
 
38
38
  ```bash
39
39
  npm install
40
- npm run dev # next dev -> http://localhost:3000
40
+ npm run dev # next dev --turbopack -> http://localhost:3000
41
41
  ```
42
42
 
43
43
  A ForgeCart channel workspace serves this app as its live site by running
@@ -3,7 +3,7 @@
3
3
  "version": "0.1.0",
4
4
  "private": true,
5
5
  "scripts": {
6
- "dev": "next dev",
6
+ "dev": "next dev --turbopack",
7
7
  "build": "next build",
8
8
  "start": "next start"
9
9
  },