@blocklet/component-studio-cli 0.5.3 → 0.5.5
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
|
@@ -22,9 +22,19 @@ This is a basic component studio project created with Component Studio.
|
|
|
22
22
|
Start development server:
|
|
23
23
|
|
|
24
24
|
```bash
|
|
25
|
+
blocklet component dev
|
|
26
|
+
|
|
27
|
+
# or
|
|
28
|
+
|
|
25
29
|
pnpm run dev
|
|
26
30
|
```
|
|
27
31
|
|
|
32
|
+
Update workspace and project dependencies:
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
blocklet component update
|
|
36
|
+
```
|
|
37
|
+
|
|
28
38
|
## License
|
|
29
39
|
|
|
30
40
|
MIT
|
|
@@ -10,10 +10,16 @@
|
|
|
10
10
|
"update:deps": "npx -y taze -f -r -w -n '/arcblock|ocap|abtnode|blocklet|did-connect|did-comment|nedb/' latest && pnpm install && pnpm run deduplicate",
|
|
11
11
|
"deduplicate": "pnpm dedupe"
|
|
12
12
|
},
|
|
13
|
+
"lint-staged": {
|
|
14
|
+
"*.{js,jsx,ts,tsx}": [
|
|
15
|
+
"echo 'Skipping linting'"
|
|
16
|
+
]
|
|
17
|
+
},
|
|
13
18
|
"dependencies": {},
|
|
14
19
|
"devDependencies": {
|
|
15
20
|
"@types/react": "^18.2.0",
|
|
16
21
|
"@types/react-dom": "^18.2.0",
|
|
22
|
+
"lint-staged": "^15.5.2",
|
|
17
23
|
"react": "^18.2.0",
|
|
18
24
|
"react-dom": "^18.2.0",
|
|
19
25
|
"typescript": "^5.0.0"
|
|
@@ -37,9 +37,19 @@ This is a professional component project created with Component Studio. This tem
|
|
|
37
37
|
Start development server:
|
|
38
38
|
|
|
39
39
|
```bash
|
|
40
|
+
blocklet component dev
|
|
41
|
+
|
|
42
|
+
# or
|
|
43
|
+
|
|
40
44
|
pnpm run dev
|
|
41
45
|
```
|
|
42
46
|
|
|
47
|
+
Update workspace and project dependencies:
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
blocklet component update
|
|
51
|
+
```
|
|
52
|
+
|
|
43
53
|
### Publish Component
|
|
44
54
|
|
|
45
55
|
1. Update version number
|
|
@@ -19,9 +19,19 @@ This is a minimal component studio project created with Component Studio.
|
|
|
19
19
|
Start development server:
|
|
20
20
|
|
|
21
21
|
```bash
|
|
22
|
+
blocklet component dev
|
|
23
|
+
|
|
24
|
+
# or
|
|
25
|
+
|
|
22
26
|
pnpm run dev
|
|
23
27
|
```
|
|
24
28
|
|
|
29
|
+
Update workspace and project dependencies:
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
blocklet component update
|
|
33
|
+
```
|
|
34
|
+
|
|
25
35
|
## License
|
|
26
36
|
|
|
27
37
|
MIT
|
|
@@ -10,10 +10,16 @@
|
|
|
10
10
|
"update:deps": "npx -y taze -f -r -w -n '/arcblock|ocap|abtnode|blocklet|did-connect|did-comment|nedb/' latest && pnpm install && pnpm run deduplicate",
|
|
11
11
|
"deduplicate": "pnpm dedupe"
|
|
12
12
|
},
|
|
13
|
+
"lint-staged": {
|
|
14
|
+
"*.{js,jsx,ts,tsx}": [
|
|
15
|
+
"echo 'Skipping linting'"
|
|
16
|
+
]
|
|
17
|
+
},
|
|
13
18
|
"dependencies": {},
|
|
14
19
|
"devDependencies": {
|
|
15
20
|
"@types/react": "^18.2.0",
|
|
16
21
|
"@types/react-dom": "^18.2.0",
|
|
22
|
+
"lint-staged": "^15.5.2",
|
|
17
23
|
"react": "^18.2.0",
|
|
18
24
|
"react-dom": "^18.2.0",
|
|
19
25
|
"typescript": "^5.0.0"
|