simplify dependencies

pull/193/head
Vladimir Mandic 2021-09-11 10:29:31 -04:00
parent 6459a89e5d
commit 13eee532cc
10 changed files with 29545 additions and 179568 deletions

View File

@ -6,4 +6,3 @@ test
wiki
dist/tfjs.esm.js
dist/tfjs.esm.js.map
types/dist/tfjs.esm.d.ts

View File

@ -1,16 +1,18 @@
# @vladmandic/human
# packageJson
Version: **2.1.5**
Description: **Human: AI-powered 3D Face Detection & Rotation Tracking, Face Description & Recognition, Body Pose Tracking, 3D Hand & Finger Tracking, Iris Analysis, Age & Gender & Emotion Prediction, Gesture Recognition**
Version: **undefined**
Description: **undefined**
Author: **Vladimir Mandic <mandic00@live.com>**
License: **MIT**
Author: **undefined**
License: **undefined**
Repository: **<https://github.com/vladmandic/human>**
## Changelog
### **HEAD -> main** 2021/09/06 mandic00@live.com
### **HEAD -> main** 2021/09/10 mandic00@live.com
- remove old build server
- change build process
- add benchmark info
- simplify canvas handling in nodejs
- full rebuild

View File

@ -5,21 +5,21 @@
"console": true,
"output": "test/build.log"
},
"profiles": {
"production": ["clean", "compile", "typings", "typedoc", "lint", "changelog"],
"development": ["serve", "watch", "compile"]
},
"clean": {
"enabled": true,
"locations": ["dist/*", "types/*", "typedoc/*"]
},
"lint": {
"enabled": true,
"locations": [ "src/**/*.ts", "test/*.js", "demo/**/*.js" ],
"rules": { }
},
"changelog": {
"enabled": true,
"log": "CHANGELOG.md"
},
"serve": {
"enabled": true,
"sslKey": "node_modules/@vladmandic/build/cert/https.key",
"sslCrt": "node_modules/@vladmandic/build/cert/https.crt",
"httpPort": 10030,
@ -29,21 +29,14 @@
"defaultFile": "index.html"
},
"build": {
"enabled": true,
"global": {
"target": "es2018",
"sourcemap": true,
"banner": { "js": "/*\n Human\n homepage: <https://github.com/vladmandic/human>\n author: <https://github.com/vladmandic>'\n*/\n" }
},
"production": {
"minify": false
},
"development": {
"minify": false
},
"targets": [
{
"name": "tfjs for nodejs with cpu",
"name": "tfjs/nodejs/cpu",
"platform": "node",
"format": "cjs",
"input": "tfjs/tf-node.ts",
@ -52,7 +45,7 @@
"external": ["@tensorflow"]
},
{
"name": "human for nodejs with cpu",
"name": "human/nodejs/cpu",
"platform": "node",
"format": "cjs",
"input": "src/human.ts",
@ -61,7 +54,7 @@
"external": ["@tensorflow"]
},
{
"name": "tfjs for nodejs with gpu",
"name": "tfjs/nodejs/gpu",
"platform": "node",
"format": "cjs",
"input": "tfjs/tf-node-gpu.ts",
@ -70,7 +63,7 @@
"external": ["@tensorflow"]
},
{
"name": "human for nodejs with gpu",
"name": "human/nodejs/gpu",
"platform": "node",
"format": "cjs",
"input": "src/human.ts",
@ -79,7 +72,7 @@
"external": ["@tensorflow"]
},
{
"name": "tfjs for nodejs with wasm",
"name": "tfjs/nodejs/wasm",
"platform": "node",
"format": "cjs",
"input": "tfjs/tf-node-wasm.ts",
@ -88,7 +81,7 @@
"external": ["@tensorflow"]
},
{
"name": "human for nodejs with wasm",
"name": "human/nodejs/wasm",
"platform": "node",
"format": "cjs",
"input": "src/human.ts",
@ -97,7 +90,7 @@
"external": ["@tensorflow"]
},
{
"name": "tfjs for browser esm nobundle",
"name": "tfjs/browser/esm/nobundle",
"platform": "browser",
"format": "esm",
"input": "tfjs/tf-browser.ts",
@ -106,7 +99,7 @@
"external": ["@tensorflow", "fs", "os", "buffer", "util"]
},
{
"name": "human for browser esm nobundle",
"name": "human/browser/esm/nobundle",
"platform": "browser",
"format": "esm",
"input": "src/human.ts",
@ -115,25 +108,27 @@
"external": ["@tensorflow", "fs", "os", "buffer", "util"]
},
{
"name": "tfjs for browser esm bundle",
"name": "tfjs/browser/esm/bundle",
"platform": "browser",
"format": "esm",
"input": "tfjs/tf-browser.ts",
"output": "dist/tfjs.esm.js",
"sourcemap": false,
"minify": true,
"external": ["fs", "os", "buffer", "util"]
},
{
"name": "human for browser iife bundle",
"name": "human/browser/iife/bundle",
"platform": "browser",
"format": "iife",
"input": "src/human.ts",
"output": "dist/human.js",
"sourcemap": false,
"minify": true,
"external": ["fs", "os", "buffer", "util"]
},
{
"name": "human for browser esm bundle",
"name": "human/browser/esm/bundle",
"platform": "browser",
"format": "esm",
"input": "src/human.ts",
@ -146,7 +141,6 @@
]
},
"watch": {
"enabled": true,
"locations": [ "src/**", "tfjs/*" ]
},
"typescript": {

76223
dist/human.esm.js vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

69497
dist/human.js vendored

File diff suppressed because one or more lines are too long

60413
dist/tfjs.esm.js vendored

File diff suppressed because one or more lines are too long

View File

@ -8,15 +8,22 @@
"browser": "dist/human.esm.js",
"types": "types/src/human.d.ts",
"author": "Vladimir Mandic <mandic00@live.com>",
"bugs": { "url": "https://github.com/vladmandic/human/issues" },
"bugs": {
"url": "https://github.com/vladmandic/human/issues"
},
"homepage": "https://vladmandic.github.io/human/demo/index.html",
"license": "MIT",
"engines": { "node": ">=14.0.0" },
"repository": { "type": "git", "url": "git+https://github.com/vladmandic/human.git" },
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vladmandic/human.git"
},
"scripts": {
"start": "node --no-warnings demo/nodejs/node.js",
"dev": "build development",
"build": "build production",
"dev": "build --profile development",
"build": "build --profile production",
"test": "node --no-warnings --unhandled-rejections=strict --trace-uncaught test/test.js",
"lint": "eslint src demo test",
"scan": "npx auditjs@latest ossi --dev --quiet"
@ -63,9 +70,8 @@
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"@vladmandic/pilogger": "^0.3.1",
"@vladmandic/build": "^0.3.4",
"@vladmandic/build": "^0.4.1",
"canvas": "^2.8.0",
"chokidar": "^3.5.2",
"dayjs": "^1.10.7",
"esbuild": "^0.12.26",
"eslint": "^7.32.0",
@ -75,13 +81,11 @@
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"node-fetch": "^3.0.0",
"rimraf": "^3.0.2",
"seedrandom": "^3.0.5",
"simple-git": "^2.45.1",
"tslib": "^2.3.1",
"typedoc": "0.22.1",
"typedoc": "0.22.2",
"typescript": "4.4.3"
},
"peerDependencies": { },
"dependencies": { }
"dependencies": {
}
}

168
test/build.log Normal file
View File

@ -0,0 +1,168 @@
2021-09-11 09:36:36 INFO:  @vladmandic/human version 2.1.5
2021-09-11 09:36:36 INFO:  User: vlado Platform: linux Arch: x64 Node: v16.5.0
2021-09-11 09:36:36 INFO:  Application: {"name":"@vladmandic/human","version":"2.1.5"}
2021-09-11 09:36:36 INFO:  Environment: {"profile":"development","config":"build.json","tsconfig":true,"eslintrc":true,"git":true}
2021-09-11 09:36:36 INFO:  Toolchain: {"build":"0.4.1","esbuild":"0.12.26","typescript":"4.4.3","typedoc":"0.21.9","eslint":"7.32.0"}
2021-09-11 09:36:36 INFO:  Build {"profile":"development","steps":["serve","watch","compile"]}
2021-09-11 09:36:36 STATE: WebServer: {"ssl":false,"port":10030,"root":"."}
2021-09-11 09:36:36 STATE: WebServer: {"ssl":true,"port":10031,"root":".","sslKey":"node_modules/@vladmandic/build/cert/https.key","sslCrt":"node_modules/@vladmandic/build/cert/https.crt"}
2021-09-11 09:36:37 STATE: Watch: {"locations":["test/src/**","src/**","tfjs/*"]}
2021-09-11 09:36:37 STATE: Watch: {"locations":["test/src/**","src/**","tfjs/*"]}
2021-09-11 09:36:37 STATE: Watch: {"locations":["test/src/**","src/**","tfjs/*"]}
2021-09-11 09:36:37 STATE: Compile: {"name":"tfjs/nodejs/cpu","format":"cjs","platform":"node","input":"tfjs/tf-node.ts","output":"dist/tfjs.esm.js","files":1,"inputBytes":102,"outputBytes":1416}
2021-09-11 09:36:37 STATE: Compile: {"name":"human/nodejs/cpu","format":"cjs","platform":"node","input":"src/human.ts","output":"dist/human.node.js","files":47,"inputBytes":456867,"outputBytes":396579}
2021-09-11 09:36:37 STATE: Compile: {"name":"tfjs/nodejs/gpu","format":"cjs","platform":"node","input":"tfjs/tf-node-gpu.ts","output":"dist/tfjs.esm.js","files":1,"inputBytes":110,"outputBytes":1424}
2021-09-11 09:36:37 STATE: Compile: {"name":"human/nodejs/gpu","format":"cjs","platform":"node","input":"src/human.ts","output":"dist/human.node-gpu.js","files":47,"inputBytes":456875,"outputBytes":396583}
2021-09-11 09:36:37 STATE: Compile: {"name":"tfjs/nodejs/wasm","format":"cjs","platform":"node","input":"tfjs/tf-node-wasm.ts","output":"dist/tfjs.esm.js","files":1,"inputBytes":149,"outputBytes":1491}
2021-09-11 09:36:37 STATE: Compile: {"name":"human/nodejs/wasm","format":"cjs","platform":"node","input":"src/human.ts","output":"dist/human.node-wasm.js","files":47,"inputBytes":456942,"outputBytes":396655}
2021-09-11 09:36:37 STATE: Compile: {"name":"tfjs/browser/esm/nobundle","format":"esm","platform":"browser","input":"tfjs/tf-browser.ts","output":"dist/tfjs.esm.js","files":1,"inputBytes":2168,"outputBytes":1590}
2021-09-11 09:36:37 STATE: Compile: {"name":"human/browser/esm/nobundle","format":"esm","platform":"browser","input":"src/human.ts","output":"dist/human.esm-nobundle.js","files":47,"inputBytes":457041,"outputBytes":398559}
2021-09-11 09:36:37 STATE: Compile: {"name":"tfjs/browser/esm/bundle","format":"esm","platform":"browser","input":"tfjs/tf-browser.ts","output":"dist/tfjs.esm.js","files":7,"inputBytes":2168,"outputBytes":1138672}
2021-09-11 09:36:38 STATE: Compile: {"name":"human/browser/iife/bundle","format":"iife","platform":"browser","input":"src/human.ts","output":"dist/human.js","files":47,"inputBytes":1594123,"outputBytes":1389491}
2021-09-11 09:36:38 STATE: Compile: {"name":"human/browser/esm/bundle","format":"esm","platform":"browser","input":"src/human.ts","output":"dist/human.esm.js","files":47,"inputBytes":1594123,"outputBytes":1817614}
2021-09-11 09:36:38 INFO:  Listening...
2021-09-11 09:37:44 INFO:  Build exiting...
2021-09-11 10:11:25 INFO:  @vladmandic/human version 2.1.5
2021-09-11 10:11:25 INFO:  User: vlado Platform: linux Arch: x64 Node: v16.5.0
2021-09-11 10:11:25 INFO:  Application: {"name":"@vladmandic/human","version":"2.1.5"}
2021-09-11 10:11:25 INFO:  Environment: {"profile":"development","config":"build.json","tsconfig":true,"eslintrc":true,"git":true}
2021-09-11 10:11:25 INFO:  Toolchain: {"build":"0.4.1","esbuild":"0.12.26","typescript":"4.4.3","typedoc":"0.21.9","eslint":"7.32.0"}
2021-09-11 10:11:25 INFO:  Build: {"profile":"development","steps":["serve","watch","compile"]}
2021-09-11 10:11:25 STATE: WebServer: {"ssl":false,"port":10030,"root":"."}
2021-09-11 10:11:25 STATE: WebServer: {"ssl":true,"port":10031,"root":".","sslKey":"node_modules/@vladmandic/build/cert/https.key","sslCrt":"node_modules/@vladmandic/build/cert/https.crt"}
2021-09-11 10:11:25 STATE: Watch: {"locations":["src/**","src/**","tfjs/*"]}
2021-09-11 10:11:25 STATE: Compile: {"name":"tfjs/nodejs/cpu","format":"cjs","platform":"node","input":"tfjs/tf-node.ts","output":"dist/tfjs.esm.js","files":1,"inputBytes":102,"outputBytes":1416}
2021-09-11 10:11:25 STATE: Compile: {"name":"human/nodejs/cpu","format":"cjs","platform":"node","input":"src/human.ts","output":"dist/human.node.js","files":47,"inputBytes":456867,"outputBytes":396579}
2021-09-11 10:11:25 STATE: Compile: {"name":"tfjs/nodejs/gpu","format":"cjs","platform":"node","input":"tfjs/tf-node-gpu.ts","output":"dist/tfjs.esm.js","files":1,"inputBytes":110,"outputBytes":1424}
2021-09-11 10:11:25 STATE: Compile: {"name":"human/nodejs/gpu","format":"cjs","platform":"node","input":"src/human.ts","output":"dist/human.node-gpu.js","files":47,"inputBytes":456875,"outputBytes":396583}
2021-09-11 10:11:25 STATE: Compile: {"name":"tfjs/nodejs/wasm","format":"cjs","platform":"node","input":"tfjs/tf-node-wasm.ts","output":"dist/tfjs.esm.js","files":1,"inputBytes":149,"outputBytes":1491}
2021-09-11 10:11:25 STATE: Compile: {"name":"human/nodejs/wasm","format":"cjs","platform":"node","input":"src/human.ts","output":"dist/human.node-wasm.js","files":47,"inputBytes":456942,"outputBytes":396655}
2021-09-11 10:11:25 STATE: Compile: {"name":"tfjs/browser/esm/nobundle","format":"esm","platform":"browser","input":"tfjs/tf-browser.ts","output":"dist/tfjs.esm.js","files":1,"inputBytes":2168,"outputBytes":1590}
2021-09-11 10:11:25 STATE: Compile: {"name":"human/browser/esm/nobundle","format":"esm","platform":"browser","input":"src/human.ts","output":"dist/human.esm-nobundle.js","files":47,"inputBytes":457041,"outputBytes":398559}
2021-09-11 10:11:25 STATE: Compile: {"name":"tfjs/browser/esm/bundle","format":"esm","platform":"browser","input":"tfjs/tf-browser.ts","output":"dist/tfjs.esm.js","files":7,"inputBytes":2168,"outputBytes":1138672}
2021-09-11 10:11:26 STATE: Compile: {"name":"human/browser/iife/bundle","format":"iife","platform":"browser","input":"src/human.ts","output":"dist/human.js","files":47,"inputBytes":1594123,"outputBytes":1389491}
2021-09-11 10:11:26 STATE: Compile: {"name":"human/browser/esm/bundle","format":"esm","platform":"browser","input":"src/human.ts","output":"dist/human.esm.js","files":47,"inputBytes":1594123,"outputBytes":1817614}
2021-09-11 10:11:26 INFO:  Listening...
2021-09-11 10:11:39 DATA:  HTTP: {"method":"GET","ver":"1.1","status":200,"mime":"text/html","size":6435,"url":"/","remote":"::ffff:192.168.0.200"}
2021-09-11 10:11:39 DATA:  HTTP: {"method":"GET","ver":"1.1","status":200,"mime":"text/css","size":107884,"url":"/icons.css","remote":"::ffff:192.168.0.200"}
2021-09-11 10:11:39 DATA:  HTTP: {"method":"GET","ver":"1.1","status":200,"mime":"text/javascript","size":44675,"url":"/index.js","remote":"::ffff:192.168.0.200"}
2021-09-11 10:11:39 DATA:  HTTP: {"method":"GET","ver":"1.1","status":200,"mime":"text/javascript","size":1817614,"url":"/dist/human.esm.js","remote":"::ffff:192.168.0.200"}
2021-09-11 10:11:39 DATA:  HTTP: {"method":"GET","ver":"1.1","status":200,"mime":"text/javascript","size":14222,"url":"/helpers/menu.js","remote":"::ffff:192.168.0.200"}
2021-09-11 10:11:39 DATA:  HTTP: {"method":"GET","ver":"1.1","status":200,"mime":"text/javascript","size":10894,"url":"/helpers/gl-bench.js","remote":"::ffff:192.168.0.200"}
2021-09-11 10:11:39 DATA:  HTTP: {"method":"GET","ver":"1.1","status":200,"mime":"text/javascript","size":2976,"url":"/helpers/webrtc.js","remote":"::ffff:192.168.0.200"}
2021-09-11 10:11:39 DATA:  HTTP: {"method":"GET","ver":"1.1","status":200,"mime":"font/woff2","size":181500,"url":"/assets/lato-light.woff2","remote":"::ffff:192.168.0.200"}
2021-09-11 10:11:40 DATA:  HTTP: {"method":"GET","ver":"1.1","status":200,"mime":"text/javascript","size":4115,"url":"/index-pwa.js","remote":"::ffff:192.168.0.200"}
2021-09-11 10:13:04 INFO:  Build exiting...
2021-09-11 10:13:12 INFO:  @vladmandic/human version 2.1.5
2021-09-11 10:13:12 INFO:  User: vlado Platform: linux Arch: x64 Node: v16.5.0
2021-09-11 10:13:13 INFO:  Application: {"name":"@vladmandic/human","version":"2.1.5"}
2021-09-11 10:13:13 INFO:  Environment: {"profile":"production","config":"build.json","tsconfig":true,"eslintrc":true,"git":true}
2021-09-11 10:13:13 INFO:  Toolchain: {"build":"0.4.1","esbuild":"0.12.26","typescript":"4.4.3","typedoc":"0.21.9","eslint":"7.32.0"}
2021-09-11 10:13:13 INFO:  Build: {"profile":"production","steps":["clean","compile","typings","typedoc","lint","changelog"]}
2021-09-11 10:13:13 STATE: Clean: {"locations":["dist/*","types/*","typedoc/*"]}
2021-09-11 10:13:13 STATE: Compile: {"name":"tfjs/nodejs/cpu","format":"cjs","platform":"node","input":"tfjs/tf-node.ts","output":"dist/tfjs.esm.js","files":1,"inputBytes":102,"outputBytes":1416}
2021-09-11 10:13:13 STATE: Compile: {"name":"human/nodejs/cpu","format":"cjs","platform":"node","input":"src/human.ts","output":"dist/human.node.js","files":47,"inputBytes":456867,"outputBytes":396579}
2021-09-11 10:13:13 STATE: Compile: {"name":"tfjs/nodejs/gpu","format":"cjs","platform":"node","input":"tfjs/tf-node-gpu.ts","output":"dist/tfjs.esm.js","files":1,"inputBytes":110,"outputBytes":1424}
2021-09-11 10:13:13 STATE: Compile: {"name":"human/nodejs/gpu","format":"cjs","platform":"node","input":"src/human.ts","output":"dist/human.node-gpu.js","files":47,"inputBytes":456875,"outputBytes":396583}
2021-09-11 10:13:13 STATE: Compile: {"name":"tfjs/nodejs/wasm","format":"cjs","platform":"node","input":"tfjs/tf-node-wasm.ts","output":"dist/tfjs.esm.js","files":1,"inputBytes":149,"outputBytes":1491}
2021-09-11 10:13:13 STATE: Compile: {"name":"human/nodejs/wasm","format":"cjs","platform":"node","input":"src/human.ts","output":"dist/human.node-wasm.js","files":47,"inputBytes":456942,"outputBytes":396655}
2021-09-11 10:13:13 STATE: Compile: {"name":"tfjs/browser/esm/nobundle","format":"esm","platform":"browser","input":"tfjs/tf-browser.ts","output":"dist/tfjs.esm.js","files":1,"inputBytes":2168,"outputBytes":1590}
2021-09-11 10:13:13 STATE: Compile: {"name":"human/browser/esm/nobundle","format":"esm","platform":"browser","input":"src/human.ts","output":"dist/human.esm-nobundle.js","files":47,"inputBytes":457041,"outputBytes":398559}
2021-09-11 10:13:13 STATE: Compile: {"name":"tfjs/browser/esm/bundle","format":"esm","platform":"browser","input":"tfjs/tf-browser.ts","output":"dist/tfjs.esm.js","files":7,"inputBytes":2168,"outputBytes":1138672}
2021-09-11 10:13:13 STATE: Compile: {"name":"human/browser/iife/bundle","format":"iife","platform":"browser","input":"src/human.ts","output":"dist/human.js","files":47,"inputBytes":1594123,"outputBytes":1389491}
2021-09-11 10:13:14 STATE: Compile: {"name":"human/browser/esm/bundle","format":"esm","platform":"browser","input":"src/human.ts","output":"dist/human.esm.js","files":47,"inputBytes":1594123,"outputBytes":1817614}
2021-09-11 10:13:28 STATE: Typings: {"input":"src/human.ts","output":"types","files":47}
2021-09-11 10:13:34 STATE: TypeDoc: {"input":"src/human.ts","output":"typedoc","objects":14,"index":true}
2021-09-11 10:13:57 STATE: Lint: {"locations":["src/**/*.ts","test/*.js","demo/**/*.js"],"files":75,"errors":0,"warnings":0}
2021-09-11 10:13:58 STATE: ChangeLog: {"repository":"https://github.com/vladmandic/human","branch":"main","output":"CHANGELOG.md"}
2021-09-11 10:13:58 INFO:  Done...
2021-09-11 10:22:28 INFO:  @vladmandic/human version 2.1.5
2021-09-11 10:22:28 INFO:  User: vlado Platform: linux Arch: x64 Node: v16.5.0
2021-09-11 10:22:28 INFO:  Application: {"name":"@vladmandic/human","version":"2.1.5"}
2021-09-11 10:22:28 INFO:  Environment: {"profile":"development","config":"build.json","tsconfig":true,"eslintrc":true,"git":true}
2021-09-11 10:22:28 INFO:  Toolchain: {"build":"0.4.1","esbuild":"0.12.26","typescript":"4.4.3","typedoc":"0.21.9","eslint":"7.32.0"}
2021-09-11 10:22:28 INFO:  Build: {"profile":"development","steps":["serve","watch","compile"]}
2021-09-11 10:22:28 STATE: WebServer: {"ssl":false,"port":10030,"root":"."}
2021-09-11 10:22:28 STATE: WebServer: {"ssl":true,"port":10031,"root":".","sslKey":"node_modules/@vladmandic/build/cert/https.key","sslCrt":"node_modules/@vladmandic/build/cert/https.crt"}
2021-09-11 10:22:28 STATE: Watch: {"locations":["src/**","src/**","tfjs/*"]}
2021-09-11 10:22:28 STATE: Compile: {"name":"tfjs/nodejs/cpu","format":"cjs","platform":"node","input":"tfjs/tf-node.ts","output":"dist/tfjs.esm.js","files":1,"inputBytes":102,"outputBytes":1416}
2021-09-11 10:22:28 STATE: Compile: {"name":"human/nodejs/cpu","format":"cjs","platform":"node","input":"src/human.ts","output":"dist/human.node.js","files":47,"inputBytes":456867,"outputBytes":396579}
2021-09-11 10:22:28 STATE: Compile: {"name":"tfjs/nodejs/gpu","format":"cjs","platform":"node","input":"tfjs/tf-node-gpu.ts","output":"dist/tfjs.esm.js","files":1,"inputBytes":110,"outputBytes":1424}
2021-09-11 10:22:28 STATE: Compile: {"name":"human/nodejs/gpu","format":"cjs","platform":"node","input":"src/human.ts","output":"dist/human.node-gpu.js","files":47,"inputBytes":456875,"outputBytes":396583}
2021-09-11 10:22:28 STATE: Compile: {"name":"tfjs/nodejs/wasm","format":"cjs","platform":"node","input":"tfjs/tf-node-wasm.ts","output":"dist/tfjs.esm.js","files":1,"inputBytes":149,"outputBytes":1491}
2021-09-11 10:22:28 STATE: Compile: {"name":"human/nodejs/wasm","format":"cjs","platform":"node","input":"src/human.ts","output":"dist/human.node-wasm.js","files":47,"inputBytes":456942,"outputBytes":396655}
2021-09-11 10:22:28 STATE: Compile: {"name":"tfjs/browser/esm/nobundle","format":"esm","platform":"browser","input":"tfjs/tf-browser.ts","output":"dist/tfjs.esm.js","files":1,"inputBytes":2168,"outputBytes":1590}
2021-09-11 10:22:28 STATE: Compile: {"name":"human/browser/esm/nobundle","format":"esm","platform":"browser","input":"src/human.ts","output":"dist/human.esm-nobundle.js","files":47,"inputBytes":457041,"outputBytes":398559}
2021-09-11 10:22:29 STATE: Compile: {"name":"tfjs/browser/esm/bundle","format":"esm","platform":"browser","input":"tfjs/tf-browser.ts","output":"dist/tfjs.esm.js","files":7,"inputBytes":2168,"outputBytes":1138672}
2021-09-11 10:22:29 STATE: Compile: {"name":"human/browser/iife/bundle","format":"iife","platform":"browser","input":"src/human.ts","output":"dist/human.js","files":47,"inputBytes":1594123,"outputBytes":1389491}
2021-09-11 10:22:29 STATE: Compile: {"name":"human/browser/esm/bundle","format":"esm","platform":"browser","input":"src/human.ts","output":"dist/human.esm.js","files":47,"inputBytes":1594123,"outputBytes":1817614}
2021-09-11 10:22:29 INFO:  Listening...
2021-09-11 10:22:31 INFO:  Build exiting...
2021-09-11 10:22:36 INFO:  @vladmandic/human version 2.1.5
2021-09-11 10:22:36 INFO:  User: vlado Platform: linux Arch: x64 Node: v16.5.0
2021-09-11 10:22:36 INFO:  Application: {"name":"@vladmandic/human","version":"2.1.5"}
2021-09-11 10:22:36 INFO:  Environment: {"profile":"production","config":"build.json","tsconfig":true,"eslintrc":true,"git":true}
2021-09-11 10:22:36 INFO:  Toolchain: {"build":"0.4.1","esbuild":"0.12.26","typescript":"4.4.3","typedoc":"0.21.9","eslint":"7.32.0"}
2021-09-11 10:22:36 INFO:  Build: {"profile":"production","steps":["clean","compile","typings","typedoc","lint","changelog"]}
2021-09-11 10:22:36 STATE: Clean: {"locations":["dist/*","types/*","typedoc/*"]}
2021-09-11 10:22:36 STATE: Compile: {"name":"tfjs/nodejs/cpu","format":"cjs","platform":"node","input":"tfjs/tf-node.ts","output":"dist/tfjs.esm.js","files":1,"inputBytes":102,"outputBytes":1416}
2021-09-11 10:22:36 STATE: Compile: {"name":"human/nodejs/cpu","format":"cjs","platform":"node","input":"src/human.ts","output":"dist/human.node.js","files":47,"inputBytes":456867,"outputBytes":396579}
2021-09-11 10:22:36 STATE: Compile: {"name":"tfjs/nodejs/gpu","format":"cjs","platform":"node","input":"tfjs/tf-node-gpu.ts","output":"dist/tfjs.esm.js","files":1,"inputBytes":110,"outputBytes":1424}
2021-09-11 10:22:36 STATE: Compile: {"name":"human/nodejs/gpu","format":"cjs","platform":"node","input":"src/human.ts","output":"dist/human.node-gpu.js","files":47,"inputBytes":456875,"outputBytes":396583}
2021-09-11 10:22:36 STATE: Compile: {"name":"tfjs/nodejs/wasm","format":"cjs","platform":"node","input":"tfjs/tf-node-wasm.ts","output":"dist/tfjs.esm.js","files":1,"inputBytes":149,"outputBytes":1491}
2021-09-11 10:22:36 STATE: Compile: {"name":"human/nodejs/wasm","format":"cjs","platform":"node","input":"src/human.ts","output":"dist/human.node-wasm.js","files":47,"inputBytes":456942,"outputBytes":396655}
2021-09-11 10:22:36 STATE: Compile: {"name":"tfjs/browser/esm/nobundle","format":"esm","platform":"browser","input":"tfjs/tf-browser.ts","output":"dist/tfjs.esm.js","files":1,"inputBytes":2168,"outputBytes":1590}
2021-09-11 10:22:36 STATE: Compile: {"name":"human/browser/esm/nobundle","format":"esm","platform":"browser","input":"src/human.ts","output":"dist/human.esm-nobundle.js","files":47,"inputBytes":457041,"outputBytes":398559}
2021-09-11 10:22:36 STATE: Compile: {"name":"tfjs/browser/esm/bundle","format":"esm","platform":"browser","input":"tfjs/tf-browser.ts","output":"dist/tfjs.esm.js","files":7,"inputBytes":2168,"outputBytes":1138672}
2021-09-11 10:22:37 STATE: Compile: {"name":"human/browser/iife/bundle","format":"iife","platform":"browser","input":"src/human.ts","output":"dist/human.js","files":47,"inputBytes":1594123,"outputBytes":1389491}
2021-09-11 10:22:37 STATE: Compile: {"name":"human/browser/esm/bundle","format":"esm","platform":"browser","input":"src/human.ts","output":"dist/human.esm.js","files":47,"inputBytes":1594123,"outputBytes":1817614}
2021-09-11 10:22:52 STATE: Typings: {"input":"src/human.ts","output":"types","files":47}
2021-09-11 10:22:58 STATE: TypeDoc: {"input":"src/human.ts","output":"typedoc","objects":14,"index":true}
2021-09-11 10:23:23 STATE: Lint: {"locations":["src/**/*.ts","test/*.js","demo/**/*.js"],"files":75,"errors":0,"warnings":0}
2021-09-11 10:23:23 STATE: ChangeLog: {"repository":"https://github.com/vladmandic/human","branch":"main","output":"CHANGELOG.md"}
2021-09-11 10:23:23 INFO:  Done...
2021-09-11 10:27:27 INFO:  @vladmandic/human version 2.1.5
2021-09-11 10:27:27 INFO:  User: vlado Platform: linux Arch: x64 Node: v16.5.0
2021-09-11 10:27:27 INFO:  Application: {"name":"@vladmandic/human","version":"2.1.5"}
2021-09-11 10:27:27 INFO:  Environment: {"profile":"development","config":"build.json","tsconfig":true,"eslintrc":true,"git":true}
2021-09-11 10:27:27 INFO:  Toolchain: {"build":"0.4.1","esbuild":"0.12.26","typescript":"4.4.3","typedoc":"0.21.9","eslint":"7.32.0"}
2021-09-11 10:27:27 INFO:  Build: {"profile":"development","steps":["serve","watch","compile"]}
2021-09-11 10:27:27 STATE: WebServer: {"ssl":false,"port":10030,"root":"."}
2021-09-11 10:27:27 STATE: WebServer: {"ssl":true,"port":10031,"root":".","sslKey":"node_modules/@vladmandic/build/cert/https.key","sslCrt":"node_modules/@vladmandic/build/cert/https.crt"}
2021-09-11 10:27:27 STATE: Watch: {"locations":["src/**","src/**","tfjs/*"]}
2021-09-11 10:27:27 STATE: Compile: {"name":"tfjs/nodejs/cpu","format":"cjs","platform":"node","input":"tfjs/tf-node.ts","output":"dist/tfjs.esm.js","files":1,"inputBytes":102,"outputBytes":1416}
2021-09-11 10:27:27 STATE: Compile: {"name":"human/nodejs/cpu","format":"cjs","platform":"node","input":"src/human.ts","output":"dist/human.node.js","files":47,"inputBytes":456782,"outputBytes":396579}
2021-09-11 10:27:27 STATE: Compile: {"name":"tfjs/nodejs/gpu","format":"cjs","platform":"node","input":"tfjs/tf-node-gpu.ts","output":"dist/tfjs.esm.js","files":1,"inputBytes":110,"outputBytes":1424}
2021-09-11 10:27:27 STATE: Compile: {"name":"human/nodejs/gpu","format":"cjs","platform":"node","input":"src/human.ts","output":"dist/human.node-gpu.js","files":47,"inputBytes":456790,"outputBytes":396583}
2021-09-11 10:27:27 STATE: Compile: {"name":"tfjs/nodejs/wasm","format":"cjs","platform":"node","input":"tfjs/tf-node-wasm.ts","output":"dist/tfjs.esm.js","files":1,"inputBytes":149,"outputBytes":1491}
2021-09-11 10:27:27 STATE: Compile: {"name":"human/nodejs/wasm","format":"cjs","platform":"node","input":"src/human.ts","output":"dist/human.node-wasm.js","files":47,"inputBytes":456857,"outputBytes":396655}
2021-09-11 10:27:27 STATE: Compile: {"name":"tfjs/browser/esm/nobundle","format":"esm","platform":"browser","input":"tfjs/tf-browser.ts","output":"dist/tfjs.esm.js","files":1,"inputBytes":2168,"outputBytes":1590}
2021-09-11 10:27:27 STATE: Compile: {"name":"human/browser/esm/nobundle","format":"esm","platform":"browser","input":"src/human.ts","output":"dist/human.esm-nobundle.js","files":47,"inputBytes":456956,"outputBytes":398559}
2021-09-11 10:27:28 STATE: Compile: {"name":"tfjs/browser/esm/bundle","format":"esm","platform":"browser","input":"tfjs/tf-browser.ts","output":"dist/tfjs.esm.js","files":7,"inputBytes":2168,"outputBytes":1138672}
2021-09-11 10:27:28 STATE: Compile: {"name":"human/browser/iife/bundle","format":"iife","platform":"browser","input":"src/human.ts","output":"dist/human.js","files":47,"inputBytes":1594038,"outputBytes":1389491}
2021-09-11 10:27:28 STATE: Compile: {"name":"human/browser/esm/bundle","format":"esm","platform":"browser","input":"src/human.ts","output":"dist/human.esm.js","files":47,"inputBytes":1594038,"outputBytes":1817614}
2021-09-11 10:27:28 INFO:  Listening...
2021-09-11 10:27:31 INFO:  Build exiting...
2021-09-11 10:27:35 INFO:  @vladmandic/human version 2.1.5
2021-09-11 10:27:35 INFO:  User: vlado Platform: linux Arch: x64 Node: v16.5.0
2021-09-11 10:27:35 INFO:  Application: {"name":"@vladmandic/human","version":"2.1.5"}
2021-09-11 10:27:35 INFO:  Environment: {"profile":"production","config":"build.json","tsconfig":true,"eslintrc":true,"git":true}
2021-09-11 10:27:35 INFO:  Toolchain: {"build":"0.4.1","esbuild":"0.12.26","typescript":"4.4.3","typedoc":"0.21.9","eslint":"7.32.0"}
2021-09-11 10:27:35 INFO:  Build: {"profile":"production","steps":["clean","compile","typings","typedoc","lint","changelog"]}
2021-09-11 10:27:35 STATE: Clean: {"locations":["dist/*","types/*","typedoc/*"]}
2021-09-11 10:27:35 STATE: Compile: {"name":"tfjs/nodejs/cpu","format":"cjs","platform":"node","input":"tfjs/tf-node.ts","output":"dist/tfjs.esm.js","files":1,"inputBytes":102,"outputBytes":1416}
2021-09-11 10:27:35 STATE: Compile: {"name":"human/nodejs/cpu","format":"cjs","platform":"node","input":"src/human.ts","output":"dist/human.node.js","files":47,"inputBytes":456782,"outputBytes":396579}
2021-09-11 10:27:35 STATE: Compile: {"name":"tfjs/nodejs/gpu","format":"cjs","platform":"node","input":"tfjs/tf-node-gpu.ts","output":"dist/tfjs.esm.js","files":1,"inputBytes":110,"outputBytes":1424}
2021-09-11 10:27:35 STATE: Compile: {"name":"human/nodejs/gpu","format":"cjs","platform":"node","input":"src/human.ts","output":"dist/human.node-gpu.js","files":47,"inputBytes":456790,"outputBytes":396583}
2021-09-11 10:27:35 STATE: Compile: {"name":"tfjs/nodejs/wasm","format":"cjs","platform":"node","input":"tfjs/tf-node-wasm.ts","output":"dist/tfjs.esm.js","files":1,"inputBytes":149,"outputBytes":1491}
2021-09-11 10:27:35 STATE: Compile: {"name":"human/nodejs/wasm","format":"cjs","platform":"node","input":"src/human.ts","output":"dist/human.node-wasm.js","files":47,"inputBytes":456857,"outputBytes":396655}
2021-09-11 10:27:35 STATE: Compile: {"name":"tfjs/browser/esm/nobundle","format":"esm","platform":"browser","input":"tfjs/tf-browser.ts","output":"dist/tfjs.esm.js","files":1,"inputBytes":2168,"outputBytes":1590}
2021-09-11 10:27:35 STATE: Compile: {"name":"human/browser/esm/nobundle","format":"esm","platform":"browser","input":"src/human.ts","output":"dist/human.esm-nobundle.js","files":47,"inputBytes":456956,"outputBytes":398559}
2021-09-11 10:27:35 STATE: Compile: {"name":"tfjs/browser/esm/bundle","format":"esm","platform":"browser","input":"tfjs/tf-browser.ts","output":"dist/tfjs.esm.js","files":7,"inputBytes":2168,"outputBytes":1138672}
2021-09-11 10:27:36 STATE: Compile: {"name":"human/browser/iife/bundle","format":"iife","platform":"browser","input":"src/human.ts","output":"dist/human.js","files":47,"inputBytes":1594038,"outputBytes":1389491}
2021-09-11 10:27:36 STATE: Compile: {"name":"human/browser/esm/bundle","format":"esm","platform":"browser","input":"src/human.ts","output":"dist/human.esm.js","files":47,"inputBytes":1594038,"outputBytes":1817614}
2021-09-11 10:27:51 STATE: Typings: {"input":"src/human.ts","output":"types","files":47}
2021-09-11 10:27:57 STATE: TypeDoc: {"input":"src/human.ts","output":"typedoc","objects":14,"index":true}
2021-09-11 10:28:23 STATE: Lint: {"locations":["src/**/*.ts","test/*.js","demo/**/*.js"],"files":75,"errors":0,"warnings":0}
2021-09-11 10:28:23 STATE: ChangeLog: {"repository":"https://github.com/vladmandic/human","branch":"main","output":"CHANGELOG.md"}
2021-09-11 10:28:23 INFO:  Done...

2725
types/dist/tfjs.esm.d.ts vendored

File diff suppressed because one or more lines are too long