@vulcanjs/react-ui 0.5.0 → 0.5.1

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vulcanjs/react-ui",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "Vulcan UI components for React",
5
5
  "main": "./dist/index.js",
6
6
  "files": [
@@ -8,20 +8,24 @@
8
8
  ],
9
9
  "scripts": {
10
10
  "test": "echo \"Error: no test specified\" && exit 1",
11
- "build": "webpack --config ./webpack.config.js",
12
- "build:types": "tsc --emitDeclarationOnly --declaration"
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"
13
17
  },
14
18
  "author": "",
15
19
  "license": "MIT",
16
20
  "dependencies": {
17
- "@vulcanjs/core": "^0.5.0",
18
- "@vulcanjs/graphql": "^0.5.0",
19
- "@vulcanjs/i18n": "^0.5.0",
20
- "@vulcanjs/model": "^0.5.0",
21
- "@vulcanjs/permissions": "^0.5.0",
22
- "@vulcanjs/react-hooks": "^0.5.0",
23
- "@vulcanjs/schema": "^0.5.0",
24
- "@vulcanjs/utils": "^0.5.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",
25
29
  "classnames": "^2.3.1",
26
30
  "debug": "^4.3.1",
27
31
  "lodash": "^4.17.21",
@@ -41,5 +45,5 @@
41
45
  "@types/underscore": "^1.11.1",
42
46
  "graphql": "^15.5.0"
43
47
  },
44
- "gitHead": "5f2b9d14a20ed6a4307f126057c4658984481a50"
48
+ "gitHead": "05a06abfe090df0e0cda4924cadefa99f0164351"
45
49
  }