taste 0.3.5 → 0.3.6

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 +8 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -35,8 +35,10 @@ Pull taste packages from storage to your project:
35
35
 
36
36
  ```bash
37
37
  npx taste pull [package-name]
38
- npx taste pull --all # Pull all packages
39
- npx taste pull -g [package-name] # Pull from global storage
38
+ npx taste pull --all # Pull all packages
39
+ npx taste pull -g [package-name] # Pull from global storage
40
+ npx taste pull --remote [package-name] # Pull from remote
41
+ npx taste pull --overwrite # Overwrite instead of merge (default: merge)
40
42
  ```
41
43
 
42
44
  ### Push Taste Package
@@ -45,9 +47,10 @@ Push taste packages from your project to storage:
45
47
 
46
48
  ```bash
47
49
  npx taste push [package-name]
48
- npx taste push --all # Push all packages
49
- npx taste push -g [package-name] # Push to global storage
50
- npx taste push --overwrite # Overwrite instead of merge
50
+ npx taste push --all # Push all packages
51
+ npx taste push -g [package-name] # Push to global storage
52
+ npx taste push --remote [package-name] # Push to remote
53
+ npx taste push --overwrite # Overwrite instead of merge (default: merge)
51
54
  ```
52
55
 
53
56
  ### List Packages
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taste",
3
- "version": "0.3.5",
3
+ "version": "0.3.6",
4
4
  "description": "Taste CLI to manage CommandCode taste",
5
5
  "type": "module",
6
6
  "main": "dist/index.mjs",