@things-factory/shell 4.3.543-alpha.0 → 4.3.591

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 CHANGED
@@ -1,14 +1,13 @@
1
1
  {
2
2
  "name": "@things-factory/shell",
3
- "version": "4.3.543-alpha.0",
3
+ "version": "4.3.591",
4
4
  "description": "Core module for framework",
5
5
  "bin": {
6
6
  "things-factory": "bin/things-factory",
7
7
  "things-factory-dev": "bin/things-factory-dev",
8
8
  "things-factory-migration": "bin/things-factory-migration",
9
9
  "things-factory-stop": "bin/things-factory-stop",
10
- "things-factory-dockerize": "bin/things-factory-dockerize",
11
- "things-factory-dockerize-arm": "bin/things-factory-dockerize-arm"
10
+ "things-factory-dockerize": "bin/things-factory-dockerize"
12
11
  },
13
12
  "main": "dist-server/index.js",
14
13
  "browser": "client/index.js",
@@ -50,10 +49,10 @@
50
49
  "@operato/layout": "^0.4.6",
51
50
  "@operato/shell": "^0.4.6",
52
51
  "@operato/utils": "^0.4.6",
53
- "@things-factory/ejs-remote": "^4.3.543-alpha.0",
54
- "@things-factory/env": "^4.3.543-alpha.0",
55
- "@things-factory/styles": "^4.3.543-alpha.0",
56
- "@things-factory/utils": "^4.3.543-alpha.0",
52
+ "@things-factory/ejs-remote": "^4.3.591",
53
+ "@things-factory/env": "^4.3.591",
54
+ "@things-factory/styles": "^4.3.591",
55
+ "@things-factory/utils": "^4.3.591",
57
56
  "@webcomponents/webcomponentsjs": "^2.6.0",
58
57
  "@webpack-contrib/schema-utils": "^1.0.0-beta.0",
59
58
  "apollo-server-core": "^3.5.0",
@@ -129,5 +128,5 @@
129
128
  "resolutions": {
130
129
  "core-js": "^3.16.0"
131
130
  },
132
- "gitHead": "841de2f16e58de02b52cf7e3d648a0a0e46b6859"
131
+ "gitHead": "b8528f316a234ad95d0f285d5ade988b44f1195f"
133
132
  }
@@ -1,15 +0,0 @@
1
- #!/usr/bin/env bash
2
- echo $1
3
- echo $2
4
- PLATFORM=linux/amd64
5
- if [ $# -eq 0 ] ; then
6
- echo "Image name required"
7
- exit 1;
8
- else
9
- IMAGE=$1
10
- PLATFORM=$2
11
- fi
12
- echo "IMAGE : ${IMAGE}"
13
- echo "PLATFORM : ${PLATFORM}"
14
- # Dockerfile4ARM을 사용하여 Docker 이미지를 빌드
15
- DOCKER_BUILDKIT=1 docker image build -f Dockerfile-arm64 -t ${IMAGE} --platform ${PLATFORM} .