@utoo/pack-cli 1.1.8 → 1.1.10-rc.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 (2) hide show
  1. package/README.md +7 -7
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -15,7 +15,7 @@ npm install -g @utoo/pack-cli
15
15
  Start the development server with Hot Module Replacement (HMR):
16
16
 
17
17
  ```bash
18
- utoopack dev
18
+ up dev
19
19
  ```
20
20
 
21
21
  ### Production Build
@@ -23,7 +23,7 @@ utoopack dev
23
23
  Build your project for production:
24
24
 
25
25
  ```bash
26
- utoopack build
26
+ up build
27
27
  ```
28
28
 
29
29
  ### Webpack Compatibility Mode
@@ -31,16 +31,16 @@ utoopack build
31
31
  If you have an existing `webpack.config.js`, you can run `@utoo/pack` in compatibility mode:
32
32
 
33
33
  ```bash
34
- utoopack build --webpack
34
+ up build --webpack
35
35
  # or
36
- utoopack dev --webpack
36
+ up dev --webpack
37
37
  ```
38
38
 
39
39
  ## 🛠️ Commands
40
40
 
41
- - `utoopack dev`: Start development server.
42
- - `utoopack build`: Build for production.
43
- - `utoopack help`: Show help for all commands.
41
+ - `up dev`: Start development server.
42
+ - `up build`: Build for production.
43
+ - `up help`: Show help for all commands.
44
44
 
45
45
  ## 📄 License
46
46
 
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@utoo/pack-cli",
3
3
  "description": "Utoo pack cli",
4
- "version": "1.1.8",
4
+ "version": "1.1.10-rc.2",
5
5
  "author": "xusd320",
6
6
  "bin": {
7
7
  "up": "./bin/run.js"
8
8
  },
9
9
  "dependencies": {
10
10
  "@oclif/core": "^4",
11
- "@utoo/pack": "1.1.8"
11
+ "@utoo/pack": "1.1.10-rc.2"
12
12
  },
13
13
  "devDependencies": {
14
14
  "@types/node": "^20.3.0",