@ripple-ts/cli 0.2.208 → 0.2.211

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 +6 -3
  2. package/package.json +4 -1
package/README.md CHANGED
@@ -2,7 +2,8 @@
2
2
 
3
3
  Interactive CLI tool for creating and managing Ripple applications.
4
4
 
5
- To create a Ripple app with simpler syntax, you can also use `create-ripple` package.
5
+ To create a Ripple app with simpler syntax, you can also use `create-ripple`
6
+ package.
6
7
 
7
8
  ## Installation
8
9
 
@@ -27,8 +28,10 @@ npx @ripple-ts/cli create
27
28
  Or use with arguments:
28
29
 
29
30
  - `project-name`: Optional. Name of the project to create
30
- - `-p, --package-manager <pm>`: Package manager to use - npm, yarn, pnpm (default: npm)
31
- - `--template <template>`: Choose a predefined template (default and currently only option: basic)
31
+ - `-p, --package-manager <pm>`: Package manager to use - npm, yarn, pnpm (default:
32
+ npm)
33
+ - `--template <template>`: Choose a predefined template (default and currently
34
+ only option: basic)
32
35
  - `--yes` or `-y`: Skip all prompts and use defaults
33
36
  - `--no-git`: Skip initializing a Git repository
34
37
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ripple-ts/cli",
3
- "version": "0.2.208",
3
+ "version": "0.2.211",
4
4
  "description": "Interactive CLI tool for creating Ripple applications",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -21,6 +21,9 @@
21
21
  "url": "https://github.com/Ripple-TS/ripple/issues"
22
22
  },
23
23
  "homepage": "https://ripplejs.com",
24
+ "publishConfig": {
25
+ "access": "public"
26
+ },
24
27
  "files": [
25
28
  "./dist/index.js"
26
29
  ],