@baravak/risloo-profile-cli 3.1.1 → 3.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/handlebars/importPartials.js +1 -1
- package/src/publish/json/profiles/PMCIEF93.json +9293 -1
- package/src/samples/JPFQ93.js +13 -13
- package/src/samples/PMCIEF93.js +219 -15
- package/views/profiles/samples/FACES93_1.hbs +1 -88
- package/views/profiles/samples/FACES93_1_partial.hbs +89 -0
- package/views/profiles/samples/FACES93_2.hbs +2 -33
- package/views/profiles/samples/FACES93_2_1_partial.hbs +20 -0
- package/views/profiles/samples/FACES93_2_2_partial.hbs +13 -0
- package/views/profiles/samples/JPFQ93.hbs +1 -40
- package/views/profiles/samples/JPFQ93_partial.hbs +27 -0
- package/views/profiles/samples/PMCIEF93.hbs +345 -2
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@ const { readdir } = require("fs/promises");
|
|
|
3
3
|
const path = require("path");
|
|
4
4
|
|
|
5
5
|
// These are the profiles that might be used completely in other profiles
|
|
6
|
-
const baseProfiles = ["AMS93", "MMFAD93", "PIES93"];
|
|
6
|
+
const baseProfiles = ["AMS93", "MMFAD93", "PIES93", "JPFQ93_partial", "FACES93_1_partial", "FACES93_2_1_partial", "FACES93_2_2_partial"];
|
|
7
7
|
|
|
8
8
|
async function importPartials(hbs) {
|
|
9
9
|
const partialsDir = path.join(__dirname, "..", "..", "views", "profiles");
|