@vulcanjs/react-ui 0.4.9 → 0.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.
- package/dist/components/VulcanComponents/Consumer.d.ts +2 -3
- package/dist/components/VulcanComponents/Consumer.d.ts.map +1 -1
- package/dist/components/VulcanComponents/Context.d.ts.map +1 -1
- package/dist/components/VulcanComponents/Provider.d.ts.map +1 -1
- package/dist/components/VulcanComponents/defaultVulcanComponents.d.ts +1 -0
- package/dist/components/VulcanComponents/defaultVulcanComponents.d.ts.map +1 -1
- package/dist/components/VulcanComponents/typings.d.ts +1 -0
- package/dist/components/VulcanComponents/typings.d.ts.map +1 -1
- package/dist/components/form/inputs/BasicInputs.d.ts.map +1 -1
- package/dist/components/form/modules/schema_utils.d.ts +0 -1
- package/dist/components/form/modules/schema_utils.d.ts.map +1 -1
- package/dist/index.js +3 -3
- package/package.json +16 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vulcanjs/react-ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"description": "Vulcan UI components for React",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"files": [
|
|
@@ -8,19 +8,24 @@
|
|
|
8
8
|
],
|
|
9
9
|
"scripts": {
|
|
10
10
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
11
|
-
"build": "
|
|
11
|
+
"build": "yarn run build:webpack",
|
|
12
|
+
"build:common": "# Doesn't work yet as it produces ESM only module. Don't forget to add type: module in package.json. # esbuild index.ts --outdir=dist --sourcemap --bundle --minify --platform=neutral --main-fields=module,main,browser --external:tty",
|
|
13
|
+
"build:client": "# Doesn't work yet # esbuild index.ts --outdir=dist/client --sourcemap --bundle --minify --platform=browser",
|
|
14
|
+
"build:server": "# Doesn't work yet # esbuild index.ts --outdir=dist/server --sourcemap --bundle --minify --platform=node --external:graphql --external:react --external:react-dom",
|
|
15
|
+
"build:webpack": "webpack --config ./webpack.config.js",
|
|
16
|
+
"build:types": "tsc --emitDeclarationOnly --declaration --project tsconfig.build.json"
|
|
12
17
|
},
|
|
13
18
|
"author": "",
|
|
14
19
|
"license": "MIT",
|
|
15
20
|
"dependencies": {
|
|
16
|
-
"@vulcanjs/core": "^0.
|
|
17
|
-
"@vulcanjs/graphql": "^0.
|
|
18
|
-
"@vulcanjs/i18n": "^0.
|
|
19
|
-
"@vulcanjs/model": "^0.
|
|
20
|
-
"@vulcanjs/permissions": "^0.
|
|
21
|
-
"@vulcanjs/react-hooks": "^0.
|
|
22
|
-
"@vulcanjs/schema": "^0.
|
|
23
|
-
"@vulcanjs/utils": "^0.
|
|
21
|
+
"@vulcanjs/core": "^0.5.1",
|
|
22
|
+
"@vulcanjs/graphql": "^0.5.1",
|
|
23
|
+
"@vulcanjs/i18n": "^0.5.1",
|
|
24
|
+
"@vulcanjs/model": "^0.5.1",
|
|
25
|
+
"@vulcanjs/permissions": "^0.5.1",
|
|
26
|
+
"@vulcanjs/react-hooks": "^0.5.1",
|
|
27
|
+
"@vulcanjs/schema": "^0.5.1",
|
|
28
|
+
"@vulcanjs/utils": "^0.5.1",
|
|
24
29
|
"classnames": "^2.3.1",
|
|
25
30
|
"debug": "^4.3.1",
|
|
26
31
|
"lodash": "^4.17.21",
|
|
@@ -40,5 +45,5 @@
|
|
|
40
45
|
"@types/underscore": "^1.11.1",
|
|
41
46
|
"graphql": "^15.5.0"
|
|
42
47
|
},
|
|
43
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "05a06abfe090df0e0cda4924cadefa99f0164351"
|
|
44
49
|
}
|