@symbo.ls/init 1.0.9 → 1.1.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.
- package/package.json +9 -13
- package/src/index.js +4 -1
package/package.json
CHANGED
|
@@ -1,15 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@symbo.ls/init",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"gitHead": "54fa6500c697604b3f48ba33a573545d7bff35fa",
|
|
6
|
-
"dependencies": {
|
|
7
|
-
"@domql/utils": "latest",
|
|
8
|
-
"@emotion/css": "latest",
|
|
9
|
-
"@symbo.ls/config-default": "latest",
|
|
10
|
-
"@symbo.ls/scratch": "latest",
|
|
11
|
-
"css-in-props": "latest"
|
|
12
|
-
},
|
|
13
6
|
"source": "src/index.js",
|
|
14
7
|
"main": "src/index.js",
|
|
15
8
|
"targets": {
|
|
@@ -35,13 +28,16 @@
|
|
|
35
28
|
"push:version": "npm version patch && npm publish && git push origin --tags && git push",
|
|
36
29
|
"clean": "rm -rf dist node_modules yarn.lock .parcel-cache yarn-error.log"
|
|
37
30
|
},
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"@domql/utils": "latest",
|
|
33
|
+
"@symbo.ls/config-default": "latest",
|
|
34
|
+
"@symbo.ls/scratch": "latest",
|
|
35
|
+
"css-in-props": "latest",
|
|
36
|
+
"@emotion/css": "^11.10.0"
|
|
37
|
+
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@babel/core": "^7.
|
|
39
|
+
"@babel/core": "^7.18.10",
|
|
40
40
|
"babel-eslint": "^10.1.0",
|
|
41
|
-
"emotion": "^10.0.27",
|
|
42
|
-
"lerna": "^4.0.0",
|
|
43
|
-
"parcel": "^2.0.1",
|
|
44
|
-
"parcel-plugin-svg-sprite": "^1.4.1",
|
|
45
41
|
"standard": "^13.1.0"
|
|
46
42
|
},
|
|
47
43
|
"standard": {
|
package/src/index.js
CHANGED
|
@@ -4,7 +4,8 @@ import {
|
|
|
4
4
|
set,
|
|
5
5
|
FONT,
|
|
6
6
|
RESET,
|
|
7
|
-
getFontFaceString
|
|
7
|
+
getFontFaceString,
|
|
8
|
+
CONFIG
|
|
8
9
|
} from '@symbo.ls/scratch'
|
|
9
10
|
|
|
10
11
|
import CONFIG_DEFAULT from '@symbo.ls/config-default'
|
|
@@ -30,3 +31,5 @@ export const init = (config) => {
|
|
|
30
31
|
}
|
|
31
32
|
|
|
32
33
|
export const setClass = props => setClassname(props, css)
|
|
34
|
+
|
|
35
|
+
export { CONFIG }
|