|
@@ -11,11 +11,13 @@
|
|
|
"devServer": "webpack-dev-server --config webpack.server.dev.config.js",
|
|
|
"tsc": "tsc --incremental",
|
|
|
"build": "webpack --config ./webpack.config.js",
|
|
|
- "buildTm": "npm run cleanAll && npm run tsc && npm run cpStyles && npm run mkDist && webpack --config ./webpack.tm-saguaro.config.js",
|
|
|
+ "buildTmFv": "npm run cleanAll && npm run tsc && npm run initTmFvBuild && webpack --config ./webpack.tm-saguaro.config.js",
|
|
|
"buildAll": "npm run cleanAll && npm run tsc && npm run cpStyles && npm run mkDist && npm run copyConfig && npm run copyDef && npm run build && npm run buildDoc",
|
|
|
"buildApp": "npm run cleanAll && npm run tsc && npm run cpStyles && npm run mkDist && npm run copyConfig && npm run copyDef && npm run build",
|
|
|
"cpStyles": "ncp src/styles lib/styles",
|
|
|
+ "cpPublic": "ncp public build/TmFeatureViewer && ncp src/examples/assembly-tm/index.html build/TmFeatureViewer/index.html",
|
|
|
"mkDist": "mkdirp build/dist",
|
|
|
+ "initTmFvBuild": "mkdirp build/TmFeatureViewer && npm run cpPublic && npm run cpStyles",
|
|
|
"copyConfig": "ncp lib/config.js build/dist/config.js",
|
|
|
"copyDef": "ncp lib/app.d.ts build/dist/app.d.ts",
|
|
|
"buildDoc": "typedoc --excludeExternals --externalPattern \"**/node_modules/**\" --plugin typedoc-plugin-missing-exports src/RcsbFv3D/RcsbFv3DAssembly.tsx src/RcsbFv3D/RcsbFv3DUniprot.tsx src/RcsbFv3D/RcsbFv3DSequenceIdentity.tsx src/RcsbFv3D/RcsbFv3DCustom.tsx && sed -i '' '/---/d' docs/index.html",
|