@symbo.ls/create 2.10.14 → 2.10.17
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/index.js +5 -3
- package/package.json +2 -2
package/index.js
CHANGED
|
@@ -4,7 +4,7 @@ import DOM from 'domql'
|
|
|
4
4
|
import { isString, overwriteDeep } from '@domql/utils'
|
|
5
5
|
|
|
6
6
|
import * as smbls from '@symbo.ls/uikit'
|
|
7
|
-
import { init, DYNAMIC_JSON } from '@symbo.ls/init'
|
|
7
|
+
import { init, DYNAMIC_JSON } from '@symbo.ls/init' // eslint-disable-line no-unused-vars
|
|
8
8
|
import { fetchRemote } from '@symbo.ls/fetch'
|
|
9
9
|
|
|
10
10
|
import { define } from './define'
|
|
@@ -35,6 +35,8 @@ export const create = async (App, options = defaultOptions) => {
|
|
|
35
35
|
}
|
|
36
36
|
}
|
|
37
37
|
|
|
38
|
+
console.log(App, options)
|
|
39
|
+
|
|
38
40
|
const components = { ...smbls, ...options.components }
|
|
39
41
|
const designSystem = init(options.system)
|
|
40
42
|
|
|
@@ -58,8 +60,8 @@ export const create = async (App, options = defaultOptions) => {
|
|
|
58
60
|
pages: options.pages,
|
|
59
61
|
system: designSystem
|
|
60
62
|
},
|
|
61
|
-
components
|
|
62
|
-
|
|
63
|
+
components
|
|
64
|
+
// TODO: move define here,
|
|
63
65
|
})
|
|
64
66
|
}
|
|
65
67
|
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@symbo.ls/create",
|
|
3
|
-
"version": "2.10.
|
|
3
|
+
"version": "2.10.17",
|
|
4
4
|
"license": "MIT",
|
|
5
|
-
"gitHead": "
|
|
5
|
+
"gitHead": "f828840a39e0561f4bd3597d1b77bae52427e90c",
|
|
6
6
|
"source": "index.js",
|
|
7
7
|
"main": "index.js",
|
|
8
8
|
"dependencies": {
|