@symbo.ls/starter-kit 3.4.11 → 3.5.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.
@@ -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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@symbo.ls/starter-kit",
3
- "version": "3.4.11",
3
+ "version": "3.5.1",
4
4
  "description": "Example dev setup to use Symbols",
5
5
  "author": "symbo.ls",
6
6
  "repository": "https://github.com/symbo-ls/starter-kit",
@@ -10,6 +10,6 @@
10
10
  "deploy": "npx smbls deploy"
11
11
  },
12
12
  "dependencies": {
13
- "smbls": "^3.4.11"
13
+ "smbls": "^3.5.1"
14
14
  }
15
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