« get me outta code hell

live-dev-server.js « build-modes « write « src - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/write/build-modes/live-dev-server.js
blob: 76b6d47f395e9ef3066b05d979ffdff132ba1fcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import {logInfo} from '../../util/cli.js';

export function getCLIOptions() {
  // Stub.
  return {};
}

export async function go({
  _cliOptions,
  _dataPath,
  _mediaPath,
  _queueSize,

  _defaultLanguage,
  _languages,
  _srcRootPath,
  _urls,
  _urlSpec,
  _wikiData,

  _cachebust,
  _developersComment,
  _getSizeOfAdditionalFile,
}) {
  // Stub.
  logInfo`So we are back in the mine!`;
  logInfo`We are swinging our pickaxe in-`;
  logInfo`...multiple directions,`;
  logInfo`...multiple directions.`;
  return true;
}