Skip to content

Commit

Permalink
refactor: rename application asset gen script
Browse files Browse the repository at this point in the history
  • Loading branch information
seankwarren committed Feb 12, 2024
1 parent d489d8b commit c023064
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
"version": "0.0.0",
"description": "Input file templates and related computational configuration parameters for the applications used in the platform.",
"scripts": {
"prepublishOnly": "rm -rf lib; npm run transpile; node lib/js/build_templates.js; node build_filter_trees.js",
"prepublishOnly": "rm -rf lib; npm run build:assets",
"postinstall": "npm run transpile",
"transpile": "tsc",
"test": "nyc --reporter=text mocha --recursive --bail -require ts-node/register 'tests/**/*.ts'",
"build:assets": "tsc; ts-node src/js/build_templates.ts; ts-node src/js/build_filter_trees.ts",
"build:assets": "tsc; ts-node src/js/build_application_trees.ts; ts-node src/js/build_filter_trees.ts",
"lint": "eslint src/js tests && prettier --write src/js tests",
"lint:fix": "eslint --fix --cache src/js tests && prettier --write src/js tests",
"prettier": "prettier --check src/js tests",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* build_templates uses node API to read all jinja templates from the FS
* build_application_trees uses node API to read all jinja templates from the FS
* at build time and writes them out to a single templates.js file for
* downstream consumption to avoid FS calls in the browser.
*/
Expand Down

0 comments on commit c023064

Please sign in to comment.