release cleanup

pull/356/head
Vladimir Mandic 2022-07-21 12:53:10 -04:00
parent 7a613fb8d2
commit a9bc6087f5
6 changed files with 43 additions and 29 deletions

View File

@ -8,7 +8,8 @@
"profiles": { "profiles": {
"production": ["clean", "compile", "typings", "typedoc", "lint", "changelog"], "production": ["clean", "compile", "typings", "typedoc", "lint", "changelog"],
"development": ["serve", "watch", "compile"], "development": ["serve", "watch", "compile"],
"serve": ["serve"] "serve": ["serve"],
"clean": ["clean"]
}, },
"clean": { "clean": {
"locations": ["dist/*", "types/lib/*", "typedoc/*"] "locations": ["dist/*", "types/lib/*", "typedoc/*"]

View File

@ -9,7 +9,10 @@
## Changelog ## Changelog
### **HEAD -> main** 2022/07/18 mandic00@live.com ### **HEAD -> main** 2022/07/19 mandic00@live.com
### **origin/main** 2022/07/18 mandic00@live.com
- add load monitor test - add load monitor test
- beta for upcoming major release - beta for upcoming major release

File diff suppressed because one or more lines are too long

View File

@ -28,6 +28,7 @@ const human = new Human(humanConfig); // create instance of human with overrides
human.env['perfadd'] = false; // is performance data showing instant or total values human.env['perfadd'] = false; // is performance data showing instant or total values
human.draw.options.font = 'small-caps 18px "Lato"'; // set font used to draw labels when using draw methods human.draw.options.font = 'small-caps 18px "Lato"'; // set font used to draw labels when using draw methods
human.draw.options.lineHeight = 20; human.draw.options.lineHeight = 20;
// human.draw.options.fillPolygons = true;
const dom = { // grab instances of dom objects so we dont have to look them up later const dom = { // grab instances of dom objects so we dont have to look them up later
video: document.getElementById('video') as HTMLVideoElement, video: document.getElementById('video') as HTMLVideoElement,

View File

@ -23,6 +23,7 @@
"scripts": { "scripts": {
"start": "node --no-warnings demo/nodejs/node.js", "start": "node --no-warnings demo/nodejs/node.js",
"dev": "build --profile development", "dev": "build --profile development",
"clean": "build --profile clean",
"build": "rimraf test/build.log && node build.js", "build": "rimraf test/build.log && node build.js",
"test": "node --no-warnings --unhandled-rejections=strict --trace-uncaught test/node.js", "test": "node --no-warnings --unhandled-rejections=strict --trace-uncaught test/node.js",
"lint": "eslint src demo test", "lint": "eslint src demo test",
@ -57,7 +58,7 @@
"dayjs": "^1.11.4" "dayjs": "^1.11.4"
}, },
"devDependencies": { "devDependencies": {
"@microsoft/api-extractor": "^7.28.4", "@microsoft/api-extractor": "^7.28.5",
"@tensorflow/tfjs": "^3.18.0", "@tensorflow/tfjs": "^3.18.0",
"@tensorflow/tfjs-backend-cpu": "^3.18.0", "@tensorflow/tfjs-backend-cpu": "^3.18.0",
"@tensorflow/tfjs-backend-wasm": "^3.18.0", "@tensorflow/tfjs-backend-wasm": "^3.18.0",

View File

@ -1,24 +1,32 @@
2022-07-19 17:49:18 INFO:  Application: {"name":"@vladmandic/human","version":"2.9.0"} 2022-07-21 12:50:35 INFO:  Application: {"name":"@vladmandic/human","version":"2.9.0"}
2022-07-19 17:49:18 INFO:  Environment: {"profile":"production","config":".build.json","package":"package.json","tsconfig":true,"eslintrc":true,"git":true} 2022-07-21 12:50:35 INFO:  Environment: {"profile":"production","config":".build.json","package":"package.json","tsconfig":true,"eslintrc":true,"git":true}
2022-07-19 17:49:18 INFO:  Toolchain: {"build":"0.7.7","esbuild":"0.14.49","typescript":"4.7.4","typedoc":"0.23.8","eslint":"8.20.0"} 2022-07-21 12:50:35 INFO:  Toolchain: {"build":"0.7.7","esbuild":"0.14.49","typescript":"4.7.4","typedoc":"0.23.8","eslint":"8.20.0"}
2022-07-19 17:49:18 INFO:  Build: {"profile":"production","steps":["clean","compile","typings","typedoc","lint","changelog"]} 2022-07-21 12:50:35 INFO:  Build: {"profile":"production","steps":["clean","compile","typings","typedoc","lint","changelog"]}
2022-07-19 17:49:18 STATE: Clean: {"locations":["dist/*","types/lib/*","typedoc/*"]} 2022-07-21 12:50:35 STATE: Clean: {"locations":["dist/*","types/lib/*","typedoc/*"]}
2022-07-19 17:49:18 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":608} 2022-07-21 12:50: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":608}
2022-07-19 17:49:18 STATE: Compile: {"name":"human/nodejs/cpu","format":"cjs","platform":"node","input":"src/human.ts","output":"dist/human.node.js","files":74,"inputBytes":647896,"outputBytes":304014} 2022-07-21 12:50:36 STATE: Compile: {"name":"human/nodejs/cpu","format":"cjs","platform":"node","input":"src/human.ts","output":"dist/human.node.js","files":74,"inputBytes":647896,"outputBytes":304014}
2022-07-19 17:49:18 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":612} 2022-07-21 12:50: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":612}
2022-07-19 17:49:18 STATE: Compile: {"name":"human/nodejs/gpu","format":"cjs","platform":"node","input":"src/human.ts","output":"dist/human.node-gpu.js","files":74,"inputBytes":647900,"outputBytes":304018} 2022-07-21 12:50:36 STATE: Compile: {"name":"human/nodejs/gpu","format":"cjs","platform":"node","input":"src/human.ts","output":"dist/human.node-gpu.js","files":74,"inputBytes":647900,"outputBytes":304018}
2022-07-19 17:49:18 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":664} 2022-07-21 12:50: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":664}
2022-07-19 17:49:18 STATE: Compile: {"name":"human/nodejs/wasm","format":"cjs","platform":"node","input":"src/human.ts","output":"dist/human.node-wasm.js","files":74,"inputBytes":647952,"outputBytes":304068} 2022-07-21 12:50:36 STATE: Compile: {"name":"human/nodejs/wasm","format":"cjs","platform":"node","input":"src/human.ts","output":"dist/human.node-wasm.js","files":74,"inputBytes":647952,"outputBytes":304068}
2022-07-19 17:49:18 STATE: Compile: {"name":"tfjs/browser/version","format":"esm","platform":"browser","input":"tfjs/tf-version.ts","output":"dist/tfjs.version.js","files":1,"inputBytes":1069,"outputBytes":358} 2022-07-21 12:50:36 STATE: Compile: {"name":"tfjs/browser/version","format":"esm","platform":"browser","input":"tfjs/tf-version.ts","output":"dist/tfjs.version.js","files":1,"inputBytes":1069,"outputBytes":358}
2022-07-19 17:49:18 STATE: Compile: {"name":"tfjs/browser/esm/nobundle","format":"esm","platform":"browser","input":"tfjs/tf-browser.ts","output":"dist/tfjs.esm.js","files":2,"inputBytes":1032,"outputBytes":583} 2022-07-21 12:50:36 STATE: Compile: {"name":"tfjs/browser/esm/nobundle","format":"esm","platform":"browser","input":"tfjs/tf-browser.ts","output":"dist/tfjs.esm.js","files":2,"inputBytes":1032,"outputBytes":583}
2022-07-19 17:49:18 STATE: Compile: {"name":"human/browser/esm/nobundle","format":"esm","platform":"browser","input":"src/human.ts","output":"dist/human.esm-nobundle.js","files":74,"inputBytes":647871,"outputBytes":302893} 2022-07-21 12:50:36 STATE: Compile: {"name":"human/browser/esm/nobundle","format":"esm","platform":"browser","input":"src/human.ts","output":"dist/human.esm-nobundle.js","files":74,"inputBytes":647871,"outputBytes":302893}
2022-07-19 17:49:19 STATE: Compile: {"name":"tfjs/browser/esm/custom","format":"esm","platform":"browser","input":"tfjs/tf-custom.ts","output":"dist/tfjs.esm.js","files":11,"inputBytes":1271,"outputBytes":2799617} 2022-07-21 12:50:36 STATE: Compile: {"name":"tfjs/browser/esm/custom","format":"esm","platform":"browser","input":"tfjs/tf-custom.ts","output":"dist/tfjs.esm.js","files":11,"inputBytes":1271,"outputBytes":2799617}
2022-07-19 17:49:19 STATE: Compile: {"name":"human/browser/iife/bundle","format":"iife","platform":"browser","input":"src/human.ts","output":"dist/human.js","files":74,"inputBytes":3446905,"outputBytes":1678594} 2022-07-21 12:50:36 STATE: Compile: {"name":"human/browser/iife/bundle","format":"iife","platform":"browser","input":"src/human.ts","output":"dist/human.js","files":74,"inputBytes":3446905,"outputBytes":1678594}
2022-07-19 17:49:19 STATE: Compile: {"name":"human/browser/esm/bundle","format":"esm","platform":"browser","input":"src/human.ts","output":"dist/human.esm.js","files":74,"inputBytes":3446905,"outputBytes":3078417} 2022-07-21 12:50:36 STATE: Compile: {"name":"human/browser/esm/bundle","format":"esm","platform":"browser","input":"src/human.ts","output":"dist/human.esm.js","files":74,"inputBytes":3446905,"outputBytes":3078417}
2022-07-19 17:49:25 STATE: Typings: {"input":"src/human.ts","output":"types/lib","files":30} 2022-07-21 12:50:43 STATE: Typings: {"input":"src/human.ts","output":"types/lib","files":30}
2022-07-19 17:49:28 STATE: TypeDoc: {"input":"src/human.ts","output":"typedoc","objects":76,"generated":true} 2022-07-21 12:50:45 STATE: TypeDoc: {"input":"src/human.ts","output":"typedoc","objects":76,"generated":true}
2022-07-19 17:49:28 STATE: Compile: {"name":"demo/typescript","format":"esm","platform":"browser","input":"demo/typescript/index.ts","output":"demo/typescript/index.js","files":1,"inputBytes":6371,"outputBytes":3094} 2022-07-21 12:50:45 STATE: Compile: {"name":"demo/typescript","format":"esm","platform":"browser","input":"demo/typescript/index.ts","output":"demo/typescript/index.js","files":1,"inputBytes":6414,"outputBytes":3094}
2022-07-19 17:49:28 STATE: Compile: {"name":"demo/faceid","format":"esm","platform":"browser","input":"demo/faceid/index.ts","output":"demo/faceid/index.js","files":2,"inputBytes":15174,"outputBytes":7820} 2022-07-21 12:50:45 STATE: Compile: {"name":"demo/faceid","format":"esm","platform":"browser","input":"demo/faceid/index.ts","output":"demo/faceid/index.js","files":2,"inputBytes":15174,"outputBytes":7820}
2022-07-19 17:49:37 STATE: Lint: {"locations":["*.json","src/**/*.ts","test/**/*.js","demo/**/*.js"],"files":107,"errors":0,"warnings":0} 2022-07-21 12:50:55 STATE: Lint: {"locations":["*.json","src/**/*.ts","test/**/*.js","demo/**/*.js"],"files":107,"errors":0,"warnings":0}
2022-07-19 17:49:37 STATE: ChangeLog: {"repository":"https://github.com/vladmandic/human","branch":"main","output":"CHANGELOG.md"} 2022-07-21 12:50:55 STATE: ChangeLog: {"repository":"https://github.com/vladmandic/human","branch":"main","output":"CHANGELOG.md"}
2022-07-19 17:49:37 INFO:  Done... 2022-07-21 12:50:55 INFO:  Done...
2022-07-21 12:52:39 INFO:  @vladmandic/human version 2.9.0
2022-07-21 12:52:39 INFO:  User: vlado Platform: linux Arch: x64 Node: v16.15.0
2022-07-21 12:52:39 INFO:  Application: {"name":"@vladmandic/human","version":"2.9.0"}
2022-07-21 12:52:39 INFO:  Environment: {"profile":"clean","config":".build.json","package":"package.json","tsconfig":true,"eslintrc":true,"git":true}
2022-07-21 12:52:39 INFO:  Toolchain: {"build":"0.7.7","esbuild":"0.14.49","typescript":"4.7.4","typedoc":"0.23.8","eslint":"8.20.0"}
2022-07-21 12:52:39 INFO:  Build: {"profile":"clean","steps":["clean"]}
2022-07-21 12:52:39 STATE: Clean: {"locations":["dist/*","types/lib/*","typedoc/*"]}
2022-07-21 12:52:39 INFO:  Done...