update sourcemaps

pull/356/head
Vladimir Mandic 2021-09-11 11:17:13 -04:00
parent 017934406a
commit c9554f8e77
2 changed files with 4 additions and 12 deletions

View File

@ -9,8 +9,9 @@
## Changelog
### **HEAD -> main** 2021/09/10 mandic00@live.com
### **HEAD -> main** 2021/09/11 mandic00@live.com
- fix file permissions
- remove old build server
- change build process
- add benchmark info

View File

@ -31,7 +31,7 @@
"build": {
"global": {
"target": "es2018",
"sourcemap": true,
"sourcemap": false,
"banner": { "js": "/*\n Human\n homepage: <https://github.com/vladmandic/human>\n author: <https://github.com/vladmandic>'\n*/\n" }
},
"targets": [
@ -41,7 +41,6 @@
"format": "cjs",
"input": "tfjs/tf-node.ts",
"output": "dist/tfjs.esm.js",
"sourcemap": false,
"external": ["@tensorflow"]
},
{
@ -50,7 +49,6 @@
"format": "cjs",
"input": "src/human.ts",
"output": "dist/human.node.js",
"sourcemap": false,
"external": ["@tensorflow"]
},
{
@ -59,7 +57,6 @@
"format": "cjs",
"input": "tfjs/tf-node-gpu.ts",
"output": "dist/tfjs.esm.js",
"sourcemap": false,
"external": ["@tensorflow"]
},
{
@ -68,7 +65,6 @@
"format": "cjs",
"input": "src/human.ts",
"output": "dist/human.node-gpu.js",
"sourcemap": false,
"external": ["@tensorflow"]
},
{
@ -77,7 +73,6 @@
"format": "cjs",
"input": "tfjs/tf-node-wasm.ts",
"output": "dist/tfjs.esm.js",
"sourcemap": false,
"external": ["@tensorflow"]
},
{
@ -86,7 +81,6 @@
"format": "cjs",
"input": "src/human.ts",
"output": "dist/human.node-wasm.js",
"sourcemap": false,
"external": ["@tensorflow"]
},
{
@ -95,7 +89,6 @@
"format": "esm",
"input": "tfjs/tf-browser.ts",
"output": "dist/tfjs.esm.js",
"sourcemap": false,
"external": ["@tensorflow", "fs", "os", "buffer", "util"]
},
{
@ -113,8 +106,7 @@
"format": "esm",
"input": "tfjs/tf-browser.ts",
"output": "dist/tfjs.esm.js",
"sourcemap": false,
"minify": true,
"sourcemap": true,
"external": ["fs", "os", "buffer", "util"]
},
{
@ -123,7 +115,6 @@
"format": "iife",
"input": "src/human.ts",
"output": "dist/human.js",
"sourcemap": false,
"minify": true,
"external": ["fs", "os", "buffer", "util"]
},