Skip to content

Commit

Permalink
Fixed paths in package.js
Browse files Browse the repository at this point in the history
  • Loading branch information
mollybsmith-noaa committed Aug 23, 2024
1 parent edbb1bc commit 8f4361f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions meteor_packages/mats-common/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -154,14 +154,14 @@ Package.onUse(function (api) {
api.addFiles("lib/plot_util.js", ["client", "server"]);

// templates
api.addFiles("templates/Home.html", "client");
api.addFiles("templates/Home.js", "client");
api.addFiles("templates/ScorecardHome.html", "client");
api.addFiles("templates/ScorecardHome.js", "client");
api.addFiles("templates/CustomHome.html", "client");
api.addFiles("templates/CustomHome.js", "client");
api.addFiles("templates/Configure.html", "client");
api.addFiles("templates/Configure.js", "client");
api.addFiles("templates/home.html", "client");
api.addFiles("templates/home.js", "client");
api.addFiles("templates/scorecardHome.html", "client");
api.addFiles("templates/scorecardHome.js", "client");
api.addFiles("templates/customHome.html", "client");
api.addFiles("templates/customHome.js", "client");
api.addFiles("templates/configure.html", "client");
api.addFiles("templates/configure.js", "client");

api.addFiles("templates/about/about.html", "client");
api.addFiles("templates/about/about.js", "client");
Expand Down

0 comments on commit 8f4361f

Please sign in to comment.