@symbo.ls/starter-kit 3.4.6 → 3.4.11
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/README.md +19 -0
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -17,3 +17,22 @@ npm install
|
|
|
17
17
|
```
|
|
18
18
|
npm start
|
|
19
19
|
```
|
|
20
|
+
|
|
21
|
+
4. Deploy
|
|
22
|
+
```
|
|
23
|
+
npm run deploy
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
This will interactively ask you to choose a deploy target (Symbols, Cloudflare Pages, Vercel, Netlify, or GitHub Pages). Your choice is saved to `symbols.json` for subsequent deploys.
|
|
27
|
+
|
|
28
|
+
To initialize deployment config without deploying:
|
|
29
|
+
```
|
|
30
|
+
npx smbls deploy --init
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
5. Ask AI
|
|
34
|
+
```
|
|
35
|
+
npx smbls ask "how do I add a dark theme?"
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
Start an interactive chat with `npx smbls ask`. On first run it will guide you through AI provider setup and auto-configure [symbols-mcp](https://github.com/symbo-ls/symbols-mcp) for your editors.
|
package/package.json
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@symbo.ls/starter-kit",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.11",
|
|
4
4
|
"description": "Example dev setup to use Symbols",
|
|
5
5
|
"author": "symbo.ls",
|
|
6
6
|
"repository": "https://github.com/symbo-ls/starter-kit",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"start": "npx smbls start",
|
|
9
|
-
"build": "npx smbls build"
|
|
9
|
+
"build": "npx smbls build",
|
|
10
|
+
"deploy": "npx smbls deploy"
|
|
10
11
|
},
|
|
11
12
|
"dependencies": {
|
|
12
|
-
"smbls": "^3.4.
|
|
13
|
+
"smbls": "^3.4.11"
|
|
13
14
|
}
|
|
14
15
|
}
|