@things-factory/shell 4.0.32 → 4.0.36

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.
@@ -1,19 +1,22 @@
1
1
  #!/usr/bin/env bash
2
2
 
3
- # IMAGE=latest
4
- # IMAGE_LASTEST=latest
5
-
6
3
  echo $1
7
4
  echo $2
5
+ echo $3
6
+
7
+ PLATFORM=linux/amd64
8
+
8
9
  if [ $# -eq 0 ] ; then
9
10
  echo "Image name required"
10
11
  exit 1;
11
12
  else
12
13
  IMAGE_LASTEST=$1
13
14
  IMAGE=$2
15
+ PLATFORM=$3
14
16
  fi
15
17
 
16
18
  echo "IMAGE : ${IMAGE}"
17
- echo "IMAGE : ${IMAGE_LASTEST}"
19
+ echo "IMAGE_LASTEST : ${IMAGE_LASTEST}"
20
+ echo "PLATFORM : ${PLATFORM}"
18
21
 
19
- docker image build -t ${IMAGE} -t ${IMAGE_LASTEST} .
22
+ DOCKER_BUILDKIT=1 docker image build -t ${IMAGE} -t ${IMAGE_LASTEST} --platform ${PLATFORM} .
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/shell",
3
- "version": "4.0.32",
3
+ "version": "4.0.36",
4
4
  "description": "Core module for framework",
5
5
  "bin": {
6
6
  "things-factory": "bin/things-factory",
@@ -44,13 +44,13 @@
44
44
  "@material/mwc-icon-button": "^0.25.3",
45
45
  "@material/mwc-slider": "^0.25.3",
46
46
  "@material/mwc-textfield": "^0.25.3",
47
- "@operato/board": "^0.3.7",
48
- "@operato/graphql": "^0.3.7",
49
- "@operato/utils": "^0.3.7",
50
- "@things-factory/ejs-remote": "^4.0.32",
51
- "@things-factory/env": "^4.0.32",
52
- "@things-factory/styles": "^4.0.32",
53
- "@things-factory/utils": "^4.0.32",
47
+ "@operato/board": "^0.3.16",
48
+ "@operato/graphql": "^0.3.16",
49
+ "@operato/utils": "^0.3.16",
50
+ "@things-factory/ejs-remote": "^4.0.36",
51
+ "@things-factory/env": "^4.0.36",
52
+ "@things-factory/styles": "^4.0.36",
53
+ "@things-factory/utils": "^4.0.36",
54
54
  "@webcomponents/webcomponentsjs": "^2.6.0",
55
55
  "@webpack-contrib/schema-utils": "^1.0.0-beta.0",
56
56
  "apollo-server-core": "^3.5.0",
@@ -124,5 +124,5 @@
124
124
  "resolutions": {
125
125
  "core-js": "^3.16.0"
126
126
  },
127
- "gitHead": "a1a16e7d4531ae3ff035295fc7bf05bf0d3153a7"
127
+ "gitHead": "132ab9f8af8c34f73bcd81a9776769a6929e13ee"
128
128
  }