@mfgames-writing/format 3.3.1 → 4.0.0
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/CHANGELOG.md +7 -12
- package/jest.config.js +3 -3
- package/lib/build.d.ts +2 -6
- package/lib/build.d.ts.map +1 -1
- package/lib/build.js +88 -69
- package/lib/build.js.map +1 -1
- package/lib/cli.d.ts +1 -1
- package/lib/cli.js +37 -5
- package/lib/cli.js.map +1 -1
- package/lib/configs.d.ts +2 -5
- package/lib/configs.js +37 -5
- package/lib/configs.js.map +1 -1
- package/lib/content.d.ts +1 -1
- package/lib/content.d.ts.map +1 -1
- package/lib/content.js +118 -85
- package/lib/content.js.map +1 -1
- package/lib/image.d.ts +2 -4
- package/lib/image.d.ts.map +1 -1
- package/lib/image.js +39 -10
- package/lib/image.js.map +1 -1
- package/lib/includes.d.ts +1 -1
- package/lib/includes.js +72 -53
- package/lib/includes.js.map +1 -1
- package/lib/index.d.ts +1 -4
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +5 -4
- package/lib/index.js.map +1 -1
- package/lib/markdown.d.ts +2 -4
- package/lib/markdown.d.ts.map +1 -1
- package/lib/markdown.js +23 -17
- package/lib/markdown.js.map +1 -1
- package/lib/plugins.d.ts +2 -6
- package/lib/plugins.d.ts.map +1 -1
- package/lib/plugins.js +35 -3
- package/lib/plugins.js.map +1 -1
- package/lib/tests/OverrideTheme.d.ts +3 -12
- package/lib/tests/OverrideTheme.d.ts.map +1 -1
- package/lib/tests/OverrideTheme.js +1 -0
- package/lib/tests/OverrideTheme.js.map +1 -1
- package/lib/tests/format.test.d.ts +1 -1
- package/lib/tests/format.test.js +39 -3
- package/lib/tests/format.test.js.map +1 -1
- package/lib/tests/overrides-theme.d.ts +1 -1
- package/lib/tests/overrides-theme.js +1 -1
- package/lib/tests/overrides-theme.js.map +1 -1
- package/lib/tests/theme-overrides.test.d.ts +1 -1
- package/lib/tests/theme-overrides.test.js +50 -14
- package/lib/tests/theme-overrides.test.js.map +1 -1
- package/package.json +11 -18
- package/src/tests/simple.yaml +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -24,35 +24,30 @@
|
|
|
24
24
|
|
|
25
25
|
# [@mfgames-writing/format-v1.3.0](https://gitlab.com/mfgames-writing/mfgames-writing-js/compare/format-v1.2.4...format-v1.3.0) (2021-02-03)
|
|
26
26
|
|
|
27
|
-
|
|
28
27
|
### Bug Fixes
|
|
29
28
|
|
|
30
|
-
|
|
31
|
-
|
|
29
|
+
- correcting mistakes from monorepo merging and refactoring ([7d44c63](https://gitlab.com/mfgames-writing/mfgames-writing-js/commit/7d44c632a51a05a69bb1cd8dbb81a8b603a6d0d1))
|
|
32
30
|
|
|
33
31
|
### Features
|
|
34
32
|
|
|
35
|
-
|
|
33
|
+
- exceptions thrown while formatting return non-zero to shell ([ac94131](https://gitlab.com/mfgames-writing/mfgames-writing-js/commit/ac94131d20cfde1f87e09397bd29bcabaa9919a1))
|
|
36
34
|
|
|
37
35
|
# [@mfgames-writing/format-v1.2.4](https://git.sr.ht/~dmoonfire/mfgames-writing-js/compare/format-v1.2.3...format-v1.2.4) (2020-07-26)
|
|
38
36
|
|
|
39
|
-
|
|
40
37
|
### Bug Fixes
|
|
41
38
|
|
|
42
|
-
|
|
43
|
-
|
|
39
|
+
- fixed parameters for yaml-front-matter calls ([f3d3868](https://git.sr.ht/~dmoonfire/mfgames-writing-js/commit/f3d3868a87a13dbd3cc596f56d329e44929b8180))
|
|
40
|
+
- **format:** fixing a possible undefined in cli.ts ([d562271](https://git.sr.ht/~dmoonfire/mfgames-writing-js/commit/d56227147a90a07bd55cb0a0b6aa484066975236))
|
|
44
41
|
|
|
45
42
|
# [@mfgames-writing/format-v1.1.2](https://git.sr.ht/~dmoonfire/mfgames-writing-js/compare/format-v1.1.1...format-v1.1.2) (2020-07-26)
|
|
46
43
|
|
|
47
|
-
|
|
48
44
|
### Bug Fixes
|
|
49
45
|
|
|
50
|
-
|
|
51
|
-
|
|
46
|
+
- fixed parameters for yaml-front-matter calls ([f3d3868](https://git.sr.ht/~dmoonfire/mfgames-writing-js/commit/f3d3868a87a13dbd3cc596f56d329e44929b8180))
|
|
47
|
+
- **format:** fixing a possible undefined in cli.ts ([d562271](https://git.sr.ht/~dmoonfire/mfgames-writing-js/commit/d56227147a90a07bd55cb0a0b6aa484066975236))
|
|
52
48
|
|
|
53
49
|
## [1.1.1](https://gitlab.com/mfgames-writing/mfgames-writing-format-js/compare/v1.1.0...v1.1.1) (2018-08-11)
|
|
54
50
|
|
|
55
|
-
|
|
56
51
|
### Bug Fixes
|
|
57
52
|
|
|
58
|
-
|
|
53
|
+
- switching to package management ([9f6d460](https://gitlab.com/mfgames-writing/mfgames-writing-format-js/commit/9f6d460))
|
package/jest.config.js
CHANGED
package/lib/build.d.ts
CHANGED
|
@@ -1,6 +1,2 @@
|
|
|
1
|
-
export declare function runBuild(
|
|
2
|
-
|
|
3
|
-
packageJson: any,
|
|
4
|
-
logger: any
|
|
5
|
-
): Promise<any>;
|
|
6
|
-
//# sourceMappingURL=build.d.ts.map
|
|
1
|
+
export declare function runBuild(argv: any, packageJson: any, logger: any): Promise<any>;
|
|
2
|
+
//# sourceMappingURL=build.d.ts.map
|
package/lib/build.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"build.d.ts","sourceRoot":"","sources":["../src/build.ts"],"names":[],"mappings":"AAmBA,wBAAsB,QAAQ,
|
|
1
|
+
{"version":3,"file":"build.d.ts","sourceRoot":"","sources":["../src/build.ts"],"names":[],"mappings":"AAmBA,wBAAsB,QAAQ,CAC5B,IAAI,EAAE,GAAG,EACT,WAAW,EAAE,GAAG,EAChB,MAAM,EAAE,GAAG,GACV,OAAO,CAAC,GAAG,CAAC,CAcd"}
|
package/lib/build.js
CHANGED
|
@@ -1,17 +1,41 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
11
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.runBuild =
|
|
36
|
+
exports.runBuild = runBuild;
|
|
13
37
|
const contracts_1 = require("@mfgames-writing/contracts");
|
|
14
|
-
const path = require("path");
|
|
38
|
+
const path = __importStar(require("path"));
|
|
15
39
|
const configs_1 = require("./configs");
|
|
16
40
|
const content_1 = require("./content");
|
|
17
41
|
const plugins_1 = require("./plugins");
|
|
@@ -20,31 +44,28 @@ const mkdirp = require("mkdirp-promise");
|
|
|
20
44
|
const uuid = require("uuid");
|
|
21
45
|
const liquid = require("liquid-node");
|
|
22
46
|
const includes_1 = require("./includes");
|
|
23
|
-
function runBuild(argv, packageJson, logger) {
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
}
|
|
38
|
-
});
|
|
47
|
+
async function runBuild(argv, packageJson, logger) {
|
|
48
|
+
// The entire build system is based on promises. We start with the
|
|
49
|
+
// publication file loading and everything flows from there.
|
|
50
|
+
let args = new contracts_1.PublicationArgs(logger, packageJson, argv);
|
|
51
|
+
// Run everything in a promise and return it.
|
|
52
|
+
try {
|
|
53
|
+
const publication = await loadPublication(args, argv);
|
|
54
|
+
await chooseEditions(publication);
|
|
55
|
+
args.logger.info("Finished processing output");
|
|
56
|
+
}
|
|
57
|
+
catch (error) {
|
|
58
|
+
args.logger.error("There was an error running\n", error);
|
|
59
|
+
throw error;
|
|
60
|
+
}
|
|
39
61
|
}
|
|
40
|
-
exports.runBuild = runBuild;
|
|
41
62
|
/**
|
|
42
63
|
* Creates a promise that finds an appropriate `publication.ext` files (JSON or
|
|
43
64
|
* YAML) and loads it into memory. If one cannot be found, then this rejects the
|
|
44
65
|
* promise, otherwise it returns the resulting file.
|
|
45
66
|
*/
|
|
46
67
|
function loadPublication(args, argv) {
|
|
47
|
-
let promise = new Promise((resolve, reject) =>
|
|
68
|
+
let promise = new Promise(async (resolve, reject) => {
|
|
48
69
|
// If we have a file provided, use that.
|
|
49
70
|
let publicationFile = undefined;
|
|
50
71
|
if (argv.c) {
|
|
@@ -78,55 +99,53 @@ function loadPublication(args, argv) {
|
|
|
78
99
|
args.publicationFile = publicationFile;
|
|
79
100
|
args.publication = config;
|
|
80
101
|
// Resolve any include statements.
|
|
81
|
-
|
|
102
|
+
await (0, includes_1.mergeIncludes)(args);
|
|
82
103
|
// Ensure every content has a process data which is used to pass values.
|
|
83
104
|
prepareContents(config.contents);
|
|
84
105
|
// Finish up processing this file.
|
|
85
106
|
resolve(args);
|
|
86
|
-
})
|
|
107
|
+
});
|
|
87
108
|
// Return the resulting promise chain.
|
|
88
109
|
return promise;
|
|
89
110
|
}
|
|
90
|
-
function chooseEditions(args) {
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
if (args.argv._.
|
|
99
|
-
|
|
100
|
-
continue;
|
|
101
|
-
}
|
|
111
|
+
async function chooseEditions(args) {
|
|
112
|
+
// Build up a list of each edition promise which handles processing of a
|
|
113
|
+
// single edition.
|
|
114
|
+
let promises = new Array();
|
|
115
|
+
for (let editionName in args.publication.editions) {
|
|
116
|
+
// If we have arguments that list build, we want to filter that. If
|
|
117
|
+
// there are no targets, then we include everything.
|
|
118
|
+
if (args.argv._.length > 0) {
|
|
119
|
+
if (args.argv._.indexOf(editionName) < 0) {
|
|
120
|
+
continue;
|
|
102
121
|
}
|
|
103
|
-
// Pull out the edition and extend and merge it as needed.
|
|
104
|
-
let edition = args.publication.editions[editionName];
|
|
105
|
-
edition = extendObjects(edition, args.publication);
|
|
106
|
-
edition = mergeObjects(edition, args.publication.metadata);
|
|
107
|
-
edition = mergeObjects(edition, args.package);
|
|
108
|
-
edition = mergeObjects(edition, getDefaults());
|
|
109
|
-
edition.rootDirectory = args.rootDirectory;
|
|
110
|
-
edition.publicationFile = args.publicationFile;
|
|
111
|
-
edition.editionName = editionName;
|
|
112
|
-
// Create a promise to handle this one.
|
|
113
|
-
let editionArgs = new contracts_1.EditionArgs(args, editionName, edition);
|
|
114
|
-
promises.push(buildEdition(editionArgs));
|
|
115
122
|
}
|
|
116
|
-
//
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
123
|
+
// Pull out the edition and extend and merge it as needed.
|
|
124
|
+
let edition = args.publication.editions[editionName];
|
|
125
|
+
edition = extendObjects(edition, args.publication);
|
|
126
|
+
edition = mergeObjects(edition, args.publication.metadata);
|
|
127
|
+
edition = mergeObjects(edition, args.package);
|
|
128
|
+
edition = mergeObjects(edition, getDefaults());
|
|
129
|
+
edition.rootDirectory = args.rootDirectory;
|
|
130
|
+
edition.publicationFile = args.publicationFile;
|
|
131
|
+
edition.editionName = editionName;
|
|
132
|
+
// Create a promise to handle this one.
|
|
133
|
+
let editionArgs = new contracts_1.EditionArgs(args, editionName, edition);
|
|
134
|
+
promises.push(buildEdition(editionArgs));
|
|
135
|
+
}
|
|
136
|
+
// If we don't have any, we are going blow up.
|
|
137
|
+
if (!promises.length) {
|
|
138
|
+
args.logger.error("Cannot find at least one edition to build");
|
|
139
|
+
return Promise.reject("Cannot find edition");
|
|
140
|
+
}
|
|
141
|
+
// If we have at least one edition, we return an "all" promise.
|
|
142
|
+
await Promise.all(promises);
|
|
143
|
+
return args;
|
|
125
144
|
}
|
|
126
145
|
function buildEdition(args) {
|
|
127
146
|
// We need to resolve the output directory and filename.
|
|
128
147
|
let promise = Promise.resolve(args);
|
|
129
|
-
promise = promise.then(() =>
|
|
148
|
+
promise = promise.then(async () => {
|
|
130
149
|
// Resolve the output directory.
|
|
131
150
|
let promise = new Promise((resolve) => {
|
|
132
151
|
let engine = new liquid.Engine();
|
|
@@ -158,9 +177,9 @@ function buildEdition(args) {
|
|
|
158
177
|
return args;
|
|
159
178
|
});
|
|
160
179
|
// Finish up with the proper output.
|
|
161
|
-
|
|
180
|
+
await promise;
|
|
162
181
|
return args;
|
|
163
|
-
})
|
|
182
|
+
});
|
|
164
183
|
// Format the edition.
|
|
165
184
|
promise = promise.then(() => {
|
|
166
185
|
// Pull out the edition data.
|
|
@@ -212,10 +231,10 @@ function extendObjects(edition, publication) {
|
|
|
212
231
|
return edition;
|
|
213
232
|
// We are extending it, so pull it in.
|
|
214
233
|
let mergeFrom = publication.editions[edition.extends];
|
|
215
|
-
return
|
|
234
|
+
return { ...mergeFrom, ...edition };
|
|
216
235
|
}
|
|
217
236
|
function mergeObjects(object1, object2) {
|
|
218
|
-
return
|
|
237
|
+
return { ...object2, ...object1 };
|
|
219
238
|
}
|
|
220
239
|
function getDefaults() {
|
|
221
240
|
return {
|
package/lib/build.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"build.js","sourceRoot":"","sources":["../src/build.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"build.js","sourceRoot":"","sources":["../src/build.ts"],"names":[],"mappings":"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"}
|
package/lib/cli.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export {};
|
|
2
|
-
//# sourceMappingURL=cli.d.ts.map
|
|
2
|
+
//# sourceMappingURL=cli.d.ts.map
|
package/lib/cli.js
CHANGED
|
@@ -1,10 +1,42 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/* eslint @typescript-eslint/no-var-requires: 0 */
|
|
3
|
-
var
|
|
3
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
4
|
+
if (k2 === undefined) k2 = k;
|
|
5
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
6
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
7
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
8
|
+
}
|
|
9
|
+
Object.defineProperty(o, k2, desc);
|
|
10
|
+
}) : (function(o, m, k, k2) {
|
|
11
|
+
if (k2 === undefined) k2 = k;
|
|
12
|
+
o[k2] = m[k];
|
|
13
|
+
}));
|
|
14
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
15
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
16
|
+
}) : function(o, v) {
|
|
17
|
+
o["default"] = v;
|
|
18
|
+
});
|
|
19
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
20
|
+
var ownKeys = function(o) {
|
|
21
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
22
|
+
var ar = [];
|
|
23
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
24
|
+
return ar;
|
|
25
|
+
};
|
|
26
|
+
return ownKeys(o);
|
|
27
|
+
};
|
|
28
|
+
return function (mod) {
|
|
29
|
+
if (mod && mod.__esModule) return mod;
|
|
30
|
+
var result = {};
|
|
31
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
32
|
+
__setModuleDefault(result, mod);
|
|
33
|
+
return result;
|
|
34
|
+
};
|
|
35
|
+
})();
|
|
4
36
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
const readPackage = require("read-pkg-up");
|
|
6
|
-
const tracer = require("tracer");
|
|
7
|
-
const yargs = require("yargs");
|
|
37
|
+
const readPackage = __importStar(require("read-pkg-up"));
|
|
38
|
+
const tracer = __importStar(require("tracer"));
|
|
39
|
+
const yargs = __importStar(require("yargs"));
|
|
8
40
|
const build_1 = require("./build");
|
|
9
41
|
// Set up TypeScript source map support.
|
|
10
42
|
require("source-map-support").install();
|
|
@@ -30,7 +62,7 @@ let searchJson = readPackage.sync();
|
|
|
30
62
|
if (!searchJson || (!searchJson.pkg && !searchJson.packageJson)) {
|
|
31
63
|
throw new Error("Cannot find package.json");
|
|
32
64
|
}
|
|
33
|
-
let json =
|
|
65
|
+
let json = searchJson.packageJson ?? searchJson.pkg;
|
|
34
66
|
logger.info(`Starting ${json.name}@${json.version}`);
|
|
35
67
|
// Grab the first elements in the argv, that will be the virtual command we are
|
|
36
68
|
// running. Once we have that, pass it into the appropriate function.
|
package/lib/cli.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cli.js","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":";AAAA,kDAAkD
|
|
1
|
+
{"version":3,"file":"cli.js","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":";AAAA,kDAAkD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAElD,yDAA2C;AAC3C,+CAAiC;AACjC,6CAA+B;AAC/B,mCAAmC;AAEnC,wCAAwC;AACxC,OAAO,CAAC,oBAAoB,CAAC,CAAC,OAAO,EAAE,CAAC;AAExC,4BAA4B;AAC5B,IAAI,UAAU,GAAG,0CAA0C,CAAC;AAE5D,SAAS,WAAW,CAAC,KAAU;IAC7B,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,QAAQ,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC;AACzD,CAAC;AAED,4EAA4E;AAC5E,uDAAuD;AACvD,IAAI,IAAI,GAAG,KAAK;KACb,KAAK,CAAC,gCAAgC,CAAC;KACvC,IAAI,CAAC,MAAM,CAAC;KACZ,cAAc,CAAC,IAAI,EAAE,sCAAsC,CAAC;KAC5D,MAAM,CAAC,CAAC,CAAC;KACT,OAAO,CAAC,OAAO,EAAE,UAAU,EAAE,WAAW,CAAC,CAAC,IAAI,CAAC;AAElD,0CAA0C;AAC1C,IAAI,MAAM,GAAG,MAAM,CAAC,YAAY,CAAC;IAC/B,MAAM,EAAE,2BAA2B;IACnC,UAAU,EAAE,UAAU;CACvB,CAAC,CAAC;AAEH,IAAI,UAAU,GAAQ,WAAW,CAAC,IAAI,EAAE,CAAC;AAEzC,IAAI,CAAC,UAAU,IAAI,CAAC,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,UAAU,CAAC,WAAW,CAAC,EAAE,CAAC;IAChE,MAAM,IAAI,KAAK,CAAC,0BAA0B,CAAC,CAAC;AAC9C,CAAC;AAED,IAAI,IAAI,GAAQ,UAAU,CAAC,WAAW,IAAI,UAAU,CAAC,GAAG,CAAC;AACzD,MAAM,CAAC,IAAI,CAAC,YAAY,IAAI,CAAC,IAAI,IAAI,IAAI,CAAC,OAAO,EAAE,CAAC,CAAC;AAErD,+EAA+E;AAC/E,qEAAqE;AACrE,IAAI,OAAO,GAAG,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAErC,MAAM,CAAC,KAAK,CAAC,oBAAoB,OAAO,EAAE,CAAC,CAAC;AAE5C,QAAQ,OAAO,EAAE,CAAC;IAChB,KAAK,OAAO;QACV,IAAA,gBAAQ,EAAC,IAAI,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;QAC3D,MAAM;AACV,CAAC"}
|
package/lib/configs.d.ts
CHANGED
package/lib/configs.js
CHANGED
|
@@ -1,9 +1,42 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
2
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.loadConfig =
|
|
4
|
-
const path = require("path");
|
|
5
|
-
const fs = require("fs");
|
|
6
|
-
const yaml = require("js-yaml");
|
|
36
|
+
exports.loadConfig = loadConfig;
|
|
37
|
+
const path = __importStar(require("path"));
|
|
38
|
+
const fs = __importStar(require("fs"));
|
|
39
|
+
const yaml = __importStar(require("js-yaml"));
|
|
7
40
|
function loadConfig(logger, filename) {
|
|
8
41
|
// We have the file, so attempt to load it into memory. This will either be
|
|
9
42
|
// a YAML or a JSON file.
|
|
@@ -21,7 +54,6 @@ function loadConfig(logger, filename) {
|
|
|
21
54
|
logger.error(`Cannot parse ${extension} file types`);
|
|
22
55
|
return undefined;
|
|
23
56
|
}
|
|
24
|
-
exports.loadConfig = loadConfig;
|
|
25
57
|
function loadYaml(filename) {
|
|
26
58
|
let text = loadText(filename);
|
|
27
59
|
let data = yaml.safeLoad(text);
|
package/lib/configs.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"configs.js","sourceRoot":"","sources":["../src/configs.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"configs.js","sourceRoot":"","sources":["../src/configs.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAIA,gCAmBC;AAvBD,2CAA6B;AAC7B,uCAAyB;AACzB,8CAAgC;AAEhC,SAAgB,UAAU,CAAI,MAAW,EAAE,QAAgB;IACzD,2EAA2E;IAC3E,yBAAyB;IACzB,IAAI,SAAS,GAAG,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;IACvC,MAAM,CAAC,KAAK,CAAC,iBAAiB,EAAE,QAAQ,GAAG,OAAO,EAAE,SAAS,CAAC,CAAC;IAE/D,QAAQ,SAAS,EAAE,CAAC;QAClB,KAAK,OAAO,CAAC;QACb,KAAK,MAAM;YACT,OAAO,QAAQ,CAAC,QAAQ,CAAM,CAAC;QACjC,KAAK,OAAO;YACV,OAAO,QAAQ,CAAC,QAAQ,CAAM,CAAC;IACnC,CAAC;IAED,yEAAyE;IACzE,QAAQ;IACR,MAAM,CAAC,KAAK,CAAC,gBAAgB,SAAS,aAAa,CAAC,CAAC;IAErD,OAAO,SAAS,CAAC;AACnB,CAAC;AAED,SAAS,QAAQ,CAAC,QAAgB;IAChC,IAAI,IAAI,GAAG,QAAQ,CAAC,QAAQ,CAAC,CAAC;IAC9B,IAAI,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;IAC/B,OAAO,IAAI,CAAC;AACd,CAAC;AAED,SAAS,QAAQ,CAAC,QAAgB;IAChC,OAAO,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,CAAC;AACxC,CAAC;AAED,SAAS,QAAQ,CAAC,QAAgB;IAChC,OAAO,EAAE,CAAC,YAAY,CAAC,QAAQ,CAAC,CAAC,QAAQ,EAAE,CAAC;AAC9C,CAAC"}
|
package/lib/content.d.ts
CHANGED
|
@@ -13,4 +13,4 @@ export declare function loadContents(args: EditionArgs): Promise<EditionArgs>;
|
|
|
13
13
|
* Renders the various content for inclusion with the format.
|
|
14
14
|
*/
|
|
15
15
|
export declare function renderContents(args: EditionArgs): Promise<EditionArgs>;
|
|
16
|
-
//# sourceMappingURL=content.d.ts.map
|
|
16
|
+
//# sourceMappingURL=content.d.ts.map
|
package/lib/content.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"content.d.ts","sourceRoot":"","sources":["../src/content.ts"],"names":[],"mappings":"AAEA,OAAO,
|
|
1
|
+
{"version":3,"file":"content.d.ts","sourceRoot":"","sources":["../src/content.ts"],"names":[],"mappings":"AAEA,OAAO,EACL,WAAW,EAGZ,MAAM,4BAA4B,CAAC;AAkBpC;;;GAGG;AACH,wBAAsB,cAAc,CAAC,IAAI,EAAE,WAAW,GAAG,OAAO,CAAC,WAAW,CAAC,CAa5E;AAkGD;;;GAGG;AACH,wBAAsB,YAAY,CAAC,IAAI,EAAE,WAAW,GAAG,OAAO,CAAC,WAAW,CAAC,CAc1E;AAiJD;;GAEG;AACH,wBAAsB,cAAc,CAAC,IAAI,EAAE,WAAW,GAAG,OAAO,CAAC,WAAW,CAAC,CAa5E"}
|