@process.co/element-dev-server 0.0.1-test-5 → 0.0.1

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 -8
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -5,25 +5,24 @@ A CLI tool for developing Process.co elements with an interactive development se
5
5
  ## Installation
6
6
 
7
7
  ```bash
8
- pnpm install
9
- pnpm build
8
+
9
+ npm i @process.co/element-dev-server -g
10
+
10
11
  ```
11
12
 
12
13
  ## Usage
13
14
 
14
15
  The CLI accepts an optional path argument to specify which directory to scan for Process.co element modules:
15
16
 
17
+ or you can run from within your element's directory or one directory above run the following command
18
+
16
19
  ```bash
17
- # Use current directory
18
- process-element
19
20
 
20
- # Use a specific path
21
- process-element /path/to/your/elements
21
+ proc-dev
22
22
 
23
- # Use relative path
24
- process-element ../my-elements
25
23
  ```
26
24
 
25
+
27
26
  ## Features
28
27
 
29
28
  - **Interactive UI**: Uses Ink to provide a beautiful terminal interface
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@process.co/element-dev-server",
3
- "version": "0.0.1-test-5",
3
+ "version": "0.0.1",
4
4
  "description": "Helper Library for developing elements for Process.co",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",