@things-factory/operato-ecs 8.0.0-beta.4 → 8.0.0-beta.5
Sign up to get free protection for your applications and to get access to all the features.
- package/.dockerignore +24 -6
- package/package.json +31 -31
package/.dockerignore
CHANGED
@@ -1,13 +1,31 @@
|
|
1
|
-
node_modules
|
2
|
-
|
3
|
-
|
4
|
-
|
1
|
+
node_modules/
|
2
|
+
client/
|
3
|
+
server/
|
4
|
+
dist-client/
|
5
|
+
installer/
|
6
|
+
attachments/
|
7
|
+
cache/
|
8
|
+
logs/
|
9
|
+
Dockerfile*
|
5
10
|
docker-compose.yml
|
6
11
|
db.sqlite
|
7
12
|
db*.sqlite
|
8
13
|
license.json
|
9
|
-
attachments
|
10
14
|
config.development.js
|
11
15
|
config.production.js
|
12
16
|
!config/config.development.js
|
13
|
-
!config/config.production.js
|
17
|
+
!config/config.production.js
|
18
|
+
\_index.html
|
19
|
+
|
20
|
+
npm-debug.log
|
21
|
+
yarn-error.log
|
22
|
+
|
23
|
+
.env
|
24
|
+
.env.local
|
25
|
+
.env.production
|
26
|
+
.git/
|
27
|
+
.gitignore
|
28
|
+
.dockerignore
|
29
|
+
.vscode/
|
30
|
+
.idea/
|
31
|
+
.DS_Store
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@things-factory/operato-ecs",
|
3
|
-
"version": "8.0.0-beta.
|
3
|
+
"version": "8.0.0-beta.5",
|
4
4
|
"main": "dist-server/index.js",
|
5
5
|
"browser": "dist-client/index.js",
|
6
6
|
"things-factory": true,
|
@@ -64,38 +64,38 @@
|
|
64
64
|
"@operato/scene-table": "^8.0.0-beta",
|
65
65
|
"@operato/scene-timer": "^8.0.0-beta",
|
66
66
|
"@operato/scene-wellstek-gantt": "^8.0.0-beta",
|
67
|
-
"@things-factory/api": "^8.0.0-beta.
|
68
|
-
"@things-factory/apptool-ui": "^8.0.0-beta.
|
69
|
-
"@things-factory/auth-ui": "^8.0.0-beta.
|
70
|
-
"@things-factory/board-service": "^8.0.0-beta.
|
71
|
-
"@things-factory/board-ui": "^8.0.0-beta.
|
72
|
-
"@things-factory/context-ui": "^8.0.0-beta.
|
73
|
-
"@things-factory/dashboard": "^8.0.0-beta.
|
74
|
-
"@things-factory/evaluation": "^8.0.0-beta.
|
75
|
-
"@things-factory/export-ui": "^8.0.0-beta.
|
76
|
-
"@things-factory/help": "^8.0.0-beta.
|
77
|
-
"@things-factory/i18n-base": "^8.0.0-beta.
|
78
|
-
"@things-factory/integration-email": "^8.0.0-beta.
|
79
|
-
"@things-factory/integration-headless": "^8.0.0-beta.
|
80
|
-
"@things-factory/integration-influxdb": "^8.0.0-beta.
|
81
|
-
"@things-factory/integration-melsec": "^8.0.0-beta.
|
82
|
-
"@things-factory/integration-modbus": "^8.0.0-beta.
|
83
|
-
"@things-factory/integration-opc": "^8.0.0-beta.
|
84
|
-
"@things-factory/integration-ui": "^8.0.0-beta.
|
85
|
-
"@things-factory/lite-menu": "^8.0.0-beta.
|
86
|
-
"@things-factory/more-ui": "^8.0.0-beta.
|
87
|
-
"@things-factory/notification": "^8.0.0-beta.
|
88
|
-
"@things-factory/oauth2-client": "^8.0.0-beta.
|
89
|
-
"@things-factory/print-ui": "^8.0.0-beta.
|
90
|
-
"@things-factory/resource-ui": "^8.0.0-beta.
|
91
|
-
"@things-factory/scheduler": "^8.0.0-beta.
|
92
|
-
"@things-factory/setting-base": "^8.0.0-beta.
|
93
|
-
"@things-factory/setting-ui": "^8.0.0-beta.
|
94
|
-
"@things-factory/shell": "^8.0.0-beta.
|
95
|
-
"@things-factory/system": "^8.0.0-beta.
|
67
|
+
"@things-factory/api": "^8.0.0-beta.5",
|
68
|
+
"@things-factory/apptool-ui": "^8.0.0-beta.5",
|
69
|
+
"@things-factory/auth-ui": "^8.0.0-beta.5",
|
70
|
+
"@things-factory/board-service": "^8.0.0-beta.5",
|
71
|
+
"@things-factory/board-ui": "^8.0.0-beta.5",
|
72
|
+
"@things-factory/context-ui": "^8.0.0-beta.5",
|
73
|
+
"@things-factory/dashboard": "^8.0.0-beta.5",
|
74
|
+
"@things-factory/evaluation": "^8.0.0-beta.5",
|
75
|
+
"@things-factory/export-ui": "^8.0.0-beta.5",
|
76
|
+
"@things-factory/help": "^8.0.0-beta.5",
|
77
|
+
"@things-factory/i18n-base": "^8.0.0-beta.5",
|
78
|
+
"@things-factory/integration-email": "^8.0.0-beta.5",
|
79
|
+
"@things-factory/integration-headless": "^8.0.0-beta.5",
|
80
|
+
"@things-factory/integration-influxdb": "^8.0.0-beta.5",
|
81
|
+
"@things-factory/integration-melsec": "^8.0.0-beta.5",
|
82
|
+
"@things-factory/integration-modbus": "^8.0.0-beta.5",
|
83
|
+
"@things-factory/integration-opc": "^8.0.0-beta.5",
|
84
|
+
"@things-factory/integration-ui": "^8.0.0-beta.5",
|
85
|
+
"@things-factory/lite-menu": "^8.0.0-beta.5",
|
86
|
+
"@things-factory/more-ui": "^8.0.0-beta.5",
|
87
|
+
"@things-factory/notification": "^8.0.0-beta.5",
|
88
|
+
"@things-factory/oauth2-client": "^8.0.0-beta.5",
|
89
|
+
"@things-factory/print-ui": "^8.0.0-beta.5",
|
90
|
+
"@things-factory/resource-ui": "^8.0.0-beta.5",
|
91
|
+
"@things-factory/scheduler": "^8.0.0-beta.5",
|
92
|
+
"@things-factory/setting-base": "^8.0.0-beta.5",
|
93
|
+
"@things-factory/setting-ui": "^8.0.0-beta.5",
|
94
|
+
"@things-factory/shell": "^8.0.0-beta.5",
|
95
|
+
"@things-factory/system": "^8.0.0-beta.5"
|
96
96
|
},
|
97
97
|
"devDependencies": {
|
98
98
|
"@things-factory/builder": "^8.0.0-beta.4"
|
99
99
|
},
|
100
|
-
"gitHead": "
|
100
|
+
"gitHead": "9b8ca958169b0b0ceac8f355c4480c4536b6a821"
|
101
101
|
}
|