@symbo.ls/starter-kit 3.4.9 → 3.5.0

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.
@@ -0,0 +1,6 @@
1
+ {
2
+ "runtime": "node",
3
+ "bundler": "parcel",
4
+ "packageManager": "npm",
5
+ "deploy": "symbols"
6
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "branch": "main",
3
+ "version": "1.0.0"
4
+ }
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.9",
3
+ "version": "3.5.0",
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.9"
13
+ "smbls": "^3.5.0"
13
14
  }
14
15
  }
@@ -0,0 +1,27 @@
1
+ import state from './state.js'
2
+ import dependencies from './dependencies.js'
3
+ import * as components from './components/index.js'
4
+ import * as snippets from './snippets/index.js'
5
+ import pages from './pages/index.js'
6
+ import * as functions from './functions/index.js'
7
+ import * as methods from './methods/index.js'
8
+ import designSystem from './designSystem/index.js'
9
+ import files from './files/index.js'
10
+ import sharedLibraries from './sharedLibraries.js'
11
+ import config from './config.js'
12
+ import envs from './envs.js'
13
+
14
+ export default {
15
+ ...config,
16
+ state,
17
+ dependencies,
18
+ components,
19
+ snippets,
20
+ pages,
21
+ functions,
22
+ methods,
23
+ designSystem,
24
+ files,
25
+ sharedLibraries,
26
+ envs
27
+ }
package/symbols/index.js CHANGED
@@ -1,31 +1,5 @@
1
1
  import { create } from 'smbls'
2
-
3
2
  import app from './app.js'
3
+ import context from './context.js'
4
4
 
5
- import state from './state.js'
6
- import dependencies from './dependencies.js'
7
- import * as components from './components/index.js'
8
- import * as snippets from './snippets/index.js'
9
- import pages from './pages/index.js'
10
- import * as functions from './functions/index.js'
11
- import * as methods from './methods/index.js'
12
- import designSystem from './designSystem/index.js'
13
- import files from './files/index.js'
14
- import sharedLibraries from './sharedLibraries.js'
15
- import config from './config.js'
16
- import envs from './envs.js'
17
-
18
- create(app, {
19
- ...config,
20
- state,
21
- dependencies,
22
- components,
23
- snippets,
24
- pages,
25
- functions,
26
- methods,
27
- designSystem,
28
- files,
29
- sharedLibraries,
30
- envs
31
- })
5
+ create(app, context)
package/symbols.json CHANGED
@@ -1,8 +1,5 @@
1
1
  {
2
2
  "key": "projectName.symbo.ls",
3
- "branch": "main",
4
- "version": "1.0.0",
5
3
  "dir": "./symbols",
6
- "bundler": "parcel",
7
- "packageManager": "npm"
4
+ "bundler": "parcel"
8
5
  }
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes