@joystick.js/cli-canary 0.0.0-canary.13 → 0.0.0-canary.130

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.
Files changed (46) hide show
  1. package/_package.json +2 -1
  2. package/dist/cli.js +7 -0
  3. package/dist/functions/index.js +15 -0
  4. package/dist/functions/start/index.js +3 -470
  5. package/dist/functions/start/setComponentId.js +1 -1
  6. package/dist/functions/test/index.js +8 -26
  7. package/dist/lib/build/browserPathExclusions.js +2 -1
  8. package/dist/lib/build/buildFiles.js +63 -7
  9. package/dist/lib/build/buildPlugins.js +18 -15
  10. package/dist/lib/build/getCodeFrame.js +3 -4
  11. package/dist/lib/build/nodePaths.js +1 -0
  12. package/dist/lib/build/setComponentId.js +1 -1
  13. package/dist/lib/dev/cleanup.js +15 -27
  14. package/dist/lib/dev/databases/mongodb/index.js +1 -1
  15. package/dist/lib/dev/index.js +206 -42
  16. package/dist/lib/dev/isWindows.js +5 -0
  17. package/dist/lib/dev/loadSettings.js +1 -3
  18. package/dist/lib/dev/runTests.js +72 -5
  19. package/dist/lib/dev/startApp.js +43 -3
  20. package/dist/lib/dev/startDatabases.js +12 -5
  21. package/dist/lib/dev/startHMR.js +30 -5
  22. package/dist/lib/dev/tests.config.js +6 -0
  23. package/dist/lib/types.js +6 -0
  24. package/package.json +2 -1
  25. package/src/cli.js +9 -0
  26. package/src/functions/index.js +15 -0
  27. package/src/functions/start/index.js +602 -635
  28. package/src/functions/start/setComponentId.js +1 -1
  29. package/src/functions/test/index.js +9 -33
  30. package/src/lib/build/browserPathExclusions.js +2 -1
  31. package/src/lib/build/buildFiles.js +74 -8
  32. package/src/lib/build/buildPlugins.js +29 -22
  33. package/src/lib/build/getCodeFrame.js +3 -4
  34. package/src/lib/build/nodePaths.js +1 -0
  35. package/src/lib/build/setComponentId.js +1 -1
  36. package/src/lib/dev/cleanup.js +20 -28
  37. package/src/lib/dev/databases/mongodb/index.js +1 -1
  38. package/src/lib/dev/index.js +247 -57
  39. package/src/lib/dev/isWindows.js +3 -0
  40. package/src/lib/dev/loadSettings.js +1 -3
  41. package/src/lib/dev/runTests.js +98 -7
  42. package/src/lib/dev/startApp.js +52 -6
  43. package/src/lib/dev/startDatabases.js +12 -6
  44. package/src/lib/dev/startHMR.js +36 -7
  45. package/src/lib/dev/tests.config.js +3 -0
  46. package/src/lib/types.js +3 -0
package/_package.json CHANGED
@@ -26,6 +26,7 @@
26
26
  "@babel/code-frame": "^7.15.8",
27
27
  "acorn": "^8.5.0",
28
28
  "ascii-table": "^0.0.9",
29
+ "ava": "^5.3.1",
29
30
  "chalk": "^4.1.2",
30
31
  "chokidar": "^3.5.2",
31
32
  "command-exists": "^1.2.9",
@@ -52,4 +53,4 @@
52
53
  "ws": "^8.2.3",
53
54
  "xmlhttprequest": "^1.8.0"
54
55
  }
55
- }
56
+ }
package/dist/cli.js CHANGED
@@ -53,6 +53,13 @@ if (functionsCalled.includes("start")) {
53
53
  functions.start.function(args, options);
54
54
  }
55
55
  }
56
+ if (functionsCalled.includes("test")) {
57
+ const args = getArgs(functions.test.args);
58
+ const options = getOptions(functions.test.options);
59
+ if (functions.test.function && typeof functions.test.function === "function") {
60
+ functions.test.function(args, options);
61
+ }
62
+ }
56
63
  if (functionsCalled.includes("update")) {
57
64
  const args = getArgs(functions.update.args);
58
65
  const options = getOptions(functions.update.options);
@@ -4,6 +4,7 @@ import logout from "./logout/index.js";
4
4
  import start from "./start/index.js";
5
5
  import update from "./update/index.js";
6
6
  import use from "./use/index.js";
7
+ import test from "./test/index.js";
7
8
  const [_node, _bin, ...rawArgs] = process.argv;
8
9
  var functions_default = {
9
10
  build: {
@@ -216,6 +217,20 @@ var functions_default = {
216
217
  },
217
218
  function: start
218
219
  },
220
+ test: {
221
+ set: !!rawArgs.includes("test"),
222
+ description: "Start an existing Joystick app and run its tests.",
223
+ args: {
224
+ watch: {
225
+ set: !!rawArgs.includes("watch"),
226
+ parent: "watch",
227
+ value: !!rawArgs.includes("watch"),
228
+ description: "Run joystick test in watch mode."
229
+ }
230
+ },
231
+ options: {},
232
+ function: test()
233
+ },
219
234
  update: {
220
235
  set: !!rawArgs.includes("update"),
221
236
  description: "Update all Joystick packages to their latest version.",
@@ -1,198 +1,4 @@
1
1
  import dev from "../../lib/dev/index.js";
2
- const majorVersion = parseInt(
3
- process?.version?.split(".")[0]?.replace("v", ""),
4
- 10
5
- );
6
- const __filename = fileURLToPath(import.meta.url);
7
- const __dirname = dirname(__filename);
8
- const killProcess = (pid = 0) => {
9
- return new Promise((resolve) => {
10
- ps.kill(pid, () => {
11
- resolve();
12
- });
13
- });
14
- };
15
- const watchlist = [
16
- { path: "ui" },
17
- { path: "lib" },
18
- { path: "i18n" },
19
- { path: "api" },
20
- { path: "email" },
21
- { path: "fixtures" },
22
- { path: "routes" },
23
- { path: "index.client.js" },
24
- { path: "index.server.js" },
25
- ...filesToCopy
26
- ];
27
- const requiredFileCheck = () => {
28
- return new Promise((resolve) => {
29
- const requiredFiles = [
30
- { path: "index.server.js", type: "file" },
31
- { path: "index.html", type: "file" },
32
- { path: "index.client.js", type: "file" },
33
- { path: "api", type: "directory" },
34
- { path: "i18n", type: "directory" },
35
- { path: "lib", type: "directory" },
36
- { path: "public", type: "directory" },
37
- { path: "ui", type: "directory" },
38
- { path: "ui/components", type: "directory" },
39
- { path: "ui/layouts", type: "directory" },
40
- { path: "ui/pages", type: "directory" }
41
- ];
42
- requiredFiles.forEach((requiredFile) => {
43
- const exists = fs.existsSync(`${process.cwd()}/${requiredFile.path}`);
44
- const stats = exists && fs.statSync(`${process.cwd()}/${requiredFile.path}`);
45
- const isFile = stats && stats.isFile();
46
- const isDirectory = stats && stats.isDirectory();
47
- if (requiredFile && requiredFile.type === "file") {
48
- if (!exists || exists && !isFile) {
49
- CLILog(
50
- `The path ${requiredFile.path} must exist in your project and must be a file (not a directory).`,
51
- {
52
- level: "danger",
53
- docs: "https://github.com/cheatcode/joystick#folder-and-file-structure"
54
- }
55
- );
56
- process.exit(0);
57
- }
58
- }
59
- if (requiredFile && requiredFile.type === "directory") {
60
- if (!exists || exists && !isDirectory) {
61
- CLILog(
62
- `The path ${requiredFile.path} must exist in your project and must be a directory (not a file).`,
63
- {
64
- level: "danger",
65
- docs: "https://github.com/cheatcode/joystick#folder-and-file-structure"
66
- }
67
- );
68
- process.exit(0);
69
- }
70
- }
71
- });
72
- resolve();
73
- });
74
- };
75
- const handleCleanup = async (processIds = [process?.serverProcess?.pid, process?.hmrProcess?.pid]) => {
76
- for (let i = 0; i < processIds?.length; i += 1) {
77
- const processId = processIds[i];
78
- if (processId) {
79
- await killProcess(processId);
80
- }
81
- }
82
- const databases = Object.entries(process._databases || {});
83
- for (let i = 0; i < databases?.length; i += 1) {
84
- const [provider, providerConnection] = databases[i];
85
- if (providerConnection?.pid) {
86
- await killProcess(providerConnection.pid);
87
- }
88
- if (!providerConnection?.pid) {
89
- const providerConnections = Object.entries(providerConnection);
90
- for (let pc = 0; pc < providerConnections?.length; pc += 1) {
91
- const [_connectionName, connection] = providerConnections[pc];
92
- if (connection?.pid) {
93
- await killProcess(connection?.pid);
94
- }
95
- }
96
- }
97
- }
98
- };
99
- const getDatabaseProcessIds = () => {
100
- const databaseProcessIds = [];
101
- const databases = Object.entries(process._databases || {});
102
- for (let i = 0; i < databases?.length; i += 1) {
103
- const [_provider, providerConnection] = databases[i];
104
- if (providerConnection?.pid) {
105
- databaseProcessIds.push(providerConnection.pid);
106
- }
107
- if (!providerConnection?.pid) {
108
- const providerConnections = Object.entries(providerConnection);
109
- for (let pc = 0; pc < providerConnections?.length; pc += 1) {
110
- const [_connectionName, connection] = providerConnections[pc];
111
- if (connection?.pid) {
112
- databaseProcessIds.push(connection.pid);
113
- }
114
- }
115
- }
116
- }
117
- return databaseProcessIds;
118
- };
119
- const handleSignalEvents = (processIds = []) => {
120
- const execArgv = ["--no-warnings"];
121
- if (majorVersion < 19) {
122
- execArgv.push("--experimental-specifier-resolution=node");
123
- }
124
- const cleanupProcess = child_process.fork(
125
- path.resolve(`${__dirname}/cleanup/index.js`),
126
- [],
127
- {
128
- // NOTE: Run in detached mode so when parent process dies, the child still runs
129
- // and cleanup completes.
130
- detached: true,
131
- execArgv,
132
- // NOTE: Pipe stdin, stdout, and stderr. IPC establishes a message channel so we
133
- // communicate with the child_process.
134
- silent: true
135
- }
136
- );
137
- process.on("SIGINT", async () => {
138
- const databaseProcessIds = getDatabaseProcessIds();
139
- cleanupProcess.send(JSON.stringify({ processIds: [...processIds, ...databaseProcessIds] }));
140
- process.exit();
141
- });
142
- process.on("SIGTERM", async () => {
143
- const databaseProcessIds = getDatabaseProcessIds();
144
- cleanupProcess.send(JSON.stringify({ processIds: [...processIds, ...databaseProcessIds] }));
145
- process.exit();
146
- });
147
- };
148
- const handleHMRProcessMessages = () => {
149
- process.hmrProcess.on("message", (message) => {
150
- const processMessages = [
151
- "SERVER_CLOSED",
152
- "HAS_HMR_CONNECTIONS",
153
- "HAS_NO_HMR_CONNECTIONS",
154
- "HMR_UPDATE_COMPLETED"
155
- ];
156
- if (!processMessages.includes(message?.type)) {
157
- process.loader.stable(message);
158
- }
159
- if (message?.type === "HAS_HMR_CONNECTIONS") {
160
- process.hmrProcess.hasConnections = true;
161
- }
162
- if (message?.type === "HAS_NO_HMR_CONNECTIONS") {
163
- process.hmrProcess.hasConnections = false;
164
- }
165
- if (message?.type === "HMR_UPDATE_COMPLETED") {
166
- setTimeout(() => {
167
- restartApplicationProcess(message?.sessions);
168
- }, 500);
169
- }
170
- });
171
- };
172
- const handleHMRProcessSTDIO = () => {
173
- try {
174
- if (process.hmrProcess) {
175
- process.hmrProcess.on("error", (error) => {
176
- CLILog(error.toString(), {
177
- level: "danger",
178
- docs: "https://github.com/cheatcode/joystick"
179
- });
180
- });
181
- process.hmrProcess.stdout.on("data", (data) => {
182
- console.log(data.toString());
183
- });
184
- process.hmrProcess.stderr.on("data", (data) => {
185
- process.loader.stop();
186
- CLILog(data.toString(), {
187
- level: "danger",
188
- docs: "https://github.com/cheatcode/joystick"
189
- });
190
- });
191
- }
192
- } catch (exception) {
193
- throw new Error(`[dev.handleHMRProcessSTDIO] ${exception.message}`);
194
- }
195
- };
196
2
  const startHMRProcess = () => {
197
3
  const execArgv = ["--no-warnings"];
198
4
  if (majorVersion < 19) {
@@ -212,284 +18,11 @@ const startHMRProcess = () => {
212
18
  handleHMRProcessSTDIO();
213
19
  handleHMRProcessMessages();
214
20
  };
215
- const notifyHMRClients = (indexHTMLChanged = false) => {
216
- const settings = loadSettings(process.env.NODE_ENV);
217
- process.hmrProcess.send(
218
- JSON.stringify({
219
- type: "RESTART_SERVER",
220
- settings,
221
- indexHTMLChanged
222
- })
223
- );
224
- };
225
- const handleServerProcessMessages = () => {
226
- process.serverProcess.on("message", (message) => {
227
- const processMessages = ["SERVER_CLOSED"];
228
- if (!processMessages.includes(message)) {
229
- process.loader.stable(message);
230
- }
231
- });
232
- };
233
- const handleServerProcessSTDIO = () => {
234
- try {
235
- if (process.serverProcess) {
236
- process.serverProcess.on("error", (error) => {
237
- console.log(error);
238
- });
239
- process.serverProcess.stdout.on("data", (data) => {
240
- const message = data.toString();
241
- if (message && message.includes("App running at:")) {
242
- process.loader.stable(message);
243
- } else {
244
- if (message && !message.includes("BUILD_ERROR")) {
245
- console.log(message);
246
- }
247
- }
248
- });
249
- process.serverProcess.stderr.on("data", (data) => {
250
- process.loader.stop();
251
- CLILog(data.toString(), {
252
- level: "danger",
253
- docs: "https://github.com/cheatcode/joystick"
254
- });
255
- });
256
- }
257
- } catch (exception) {
258
- throw new Error(`[dev.handleServerProcessSTDIO] ${exception.message}`);
259
- }
260
- };
261
- const startApplicationProcess = (sessionsBeforeHMRUpdate = null) => {
262
- const execArgv = ["--no-warnings"];
263
- if (majorVersion < 19) {
264
- execArgv.push("--experimental-specifier-resolution=node");
265
- }
266
- if (process.env.NODE_ENV === "development" && process.env.IS_DEBUG_MODE === "true") {
267
- execArgv.push("--inspect");
268
- }
269
- const serverProcess = child_process.fork(
270
- path.resolve(".joystick/build/index.server.js"),
271
- [],
272
- {
273
- execArgv,
274
- // NOTE: Pipe stdin, stdout, and stderr. IPC establishes a message channel so we
275
- // communicate with the child_process.
276
- silent: true,
277
- env: {
278
- FORCE_COLOR: "1",
279
- LOGS_PATH: process.env.LOGS_PATH,
280
- NODE_ENV: process.env.NODE_ENV,
281
- ROOT_URL: process.env.ROOT_URL,
282
- PORT: process.env.PORT,
283
- JOYSTICK_SETTINGS: process.env.JOYSTICK_SETTINGS,
284
- HMR_SESSIONS: sessionsBeforeHMRUpdate
285
- }
286
- }
287
- );
288
- process.serverProcess = serverProcess;
289
- handleServerProcessSTDIO();
290
- handleServerProcessMessages();
291
- return serverProcess;
292
- };
293
- const restartApplicationProcess = async (sessionsBeforeHMRUpdate = null) => {
294
- if (process.serverProcess && process.serverProcess.pid) {
295
- process.loader.text("Restarting app...");
296
- process.serverProcess.kill();
297
- startApplicationProcess(sessionsBeforeHMRUpdate);
298
- return Promise.resolve();
299
- }
300
- process.loader.text("Starting app...");
301
- startApplicationProcess();
302
- if (!process.hmrProcess) {
303
- startHMRProcess();
304
- }
305
- };
306
- const initialBuild = async (buildSettings = {}) => {
307
- const buildPath = `.joystick/build`;
308
- const fileMapPath = `.joystick/build/fileMap.json`;
309
- if (!fs.existsSync(buildPath)) {
310
- fs.mkdirSync(".joystick/build");
311
- }
312
- if (fs.existsSync(fileMapPath)) {
313
- fs.unlinkSync(fileMapPath);
314
- }
315
- process.loader.text("Building app...");
316
- await requiredFileCheck();
317
- const filesToBuild = getFilesToBuild(buildSettings?.excludedPaths, "start");
318
- const fileResults = await buildFiles(
319
- filesToBuild,
320
- null,
321
- process.env.NODE_ENV
322
- );
323
- const hasErrors = [...fileResults].filter((result) => !!result).map(({ success }) => success).includes(false);
324
- if (!hasErrors) {
325
- startApplicationProcess();
326
- startHMRProcess();
327
- }
328
- };
329
- const startWatcher = async (buildSettings = {}) => {
330
- await initialBuild(buildSettings);
331
- const watcher = chokidar.watch(
332
- watchlist.map(({ path: path2 }) => path2),
333
- {
334
- ignoreInitial: true
335
- }
336
- );
337
- watcher.on("all", async (event, path2) => {
338
- await requiredFileCheck();
339
- process.loader.text("Rebuilding app...");
340
- const isHTMLUpdate = path2 === "index.html";
341
- const isUIPath = path2?.includes("ui/") || path2 === "index.css" || isHTMLUpdate;
342
- const isUIUpdate = process.hmrProcess.hasConnections && isUIPath || false;
343
- if (["addDir"].includes(event) && fs.existsSync(path2) && fs.lstatSync(path2).isDirectory() && !fs.existsSync(`./.joystick/build/${path2}`)) {
344
- fs.mkdirSync(`./.joystick/build/${path2}`);
345
- if (isUIUpdate) {
346
- notifyHMRClients(isHTMLUpdate);
347
- } else {
348
- restartApplicationProcess();
349
- }
350
- return;
351
- }
352
- if (!!filesToCopy.find((fileToCopy) => fileToCopy.path === path2)) {
353
- const isDirectory = fs.statSync(path2).isDirectory();
354
- if (isDirectory && !fs.existsSync(`./.joystick/build/${path2}`)) {
355
- fs.mkdirSync(`./.joystick/build/${path2}`);
356
- }
357
- if (!isDirectory) {
358
- fs.writeFileSync(`./.joystick/build/${path2}`, fs.readFileSync(path2));
359
- }
360
- loadSettings(process.env.NODE_ENV);
361
- if (isUIUpdate) {
362
- notifyHMRClients(isHTMLUpdate);
363
- } else {
364
- restartApplicationProcess();
365
- }
366
- return;
367
- }
368
- if (["add", "change"].includes(event) && fs.existsSync(path2)) {
369
- const codependencies = getCodependenciesForFile(path2);
370
- const fileResults = await buildFiles(
371
- [path2, ...codependencies?.existing || []],
372
- null,
373
- process.env.NODE_ENV
374
- );
375
- const fileResultsHaveErrors = fileResults.filter((result) => !!result).map(({ success }) => success).includes(false);
376
- removeDeletedDependenciesFromMap(codependencies.deleted);
377
- const hasErrors = fileResultsHaveErrors;
378
- if (process.serverProcess && hasErrors) {
379
- process.serverProcess.send(
380
- JSON.stringify({
381
- error: "BUILD_ERROR",
382
- paths: fileResults.filter(({ success }) => !success).map(({ path: pathWithError, error }) => ({
383
- path: pathWithError,
384
- error
385
- }))
386
- })
387
- );
388
- return;
389
- }
390
- if (!hasErrors) {
391
- process.initialBuildComplete = true;
392
- if (isUIUpdate) {
393
- notifyHMRClients(isHTMLUpdate);
394
- } else {
395
- restartApplicationProcess();
396
- }
397
- return;
398
- }
399
- }
400
- if (["unlink", "unlinkDir"].includes(event) && !fs.existsSync(`./.joystick/build/${path2}`)) {
401
- if (isUIUpdate) {
402
- notifyHMRClients(isHTMLUpdate);
403
- } else {
404
- restartApplicationProcess();
405
- }
406
- return;
407
- }
408
- if (["unlink", "unlinkDir"].includes(event) && fs.existsSync(`./.joystick/build/${path2}`)) {
409
- const pathToUnlink = `./.joystick/build/${path2}`;
410
- const stats = fs.lstatSync(pathToUnlink);
411
- if (stats.isDirectory()) {
412
- fs.rmdirSync(pathToUnlink, { recursive: true });
413
- }
414
- if (stats.isFile()) {
415
- fs.unlinkSync(pathToUnlink);
416
- }
417
- if (isUIUpdate) {
418
- notifyHMRClients(isHTMLUpdate);
419
- } else {
420
- restartApplicationProcess();
421
- }
422
- return;
423
- }
424
- });
425
- };
426
- const startDatabase = async (database = {}, databasePort = 2610, hasMultipleOfProvider = false) => {
427
- process._databases = {
428
- ...process._databases || {},
429
- [database.provider]: !hasMultipleOfProvider ? await startDatabaseProvider(database, databasePort) : {
430
- ...process._databases && process._databases[database.provider] || {},
431
- [database?.name || `${database.provider}_${databasePort}`]: await startDatabaseProvider(database, databasePort)
432
- }
433
- };
434
- return Promise.resolve(process._databases);
435
- };
436
- const startDatabases = async (databasePortStart = 2610) => {
437
- try {
438
- const hasSettings = !!process.env.JOYSTICK_SETTINGS;
439
- const settings = hasSettings && JSON.parse(process.env.JOYSTICK_SETTINGS);
440
- const databases = settings?.config?.databases || [];
441
- if (databases && Array.isArray(databases) && databases.length > 0) {
442
- validateDatabasesFromSettings(databases);
443
- for (let i = 0; i < databases?.length; i += 1) {
444
- const database = databases[i];
445
- const hasMultipleOfProvider = databases?.filter((database2) => database2?.provider === database2?.provider)?.length > 1;
446
- await startDatabase(database, databasePortStart + i, hasMultipleOfProvider);
447
- }
448
- return Promise.resolve();
449
- }
450
- return Promise.resolve();
451
- } catch (exception) {
452
- console.warn(exception);
453
- }
454
- };
455
- const loadSettings = () => {
456
- const environment = process.env.NODE_ENV;
457
- const settingsFilePath = `${process.cwd()}/settings.${environment}.json`;
458
- const hasSettingsFile = fs.existsSync(settingsFilePath);
459
- if (!hasSettingsFile) {
460
- CLILog(
461
- `A settings file could not be found for this environment (${environment}). Create a settings.${environment}.json file at the root of your project and restart Joystick.`,
462
- {
463
- level: "danger",
464
- docs: "https://github.com/cheatcode/joystick#settings"
465
- }
466
- );
467
- process.exit(0);
468
- }
469
- const rawSettingsFile = fs.readFileSync(settingsFilePath, "utf-8");
470
- const isValidJSON = isValidJSONString(rawSettingsFile);
471
- if (!isValidJSON) {
472
- CLILog(
473
- `Failed to parse settings file. Double-check the syntax in your settings.${environment}.json file at the root of your project and restart Joystick.`,
474
- {
475
- level: "danger",
476
- docs: "https://github.com/cheatcode/joystick#settings",
477
- tools: [{ title: "JSON Linter", url: "https://jsonlint.com/" }]
478
- }
479
- );
480
- process.exit(0);
481
- }
482
- const settingsFile = isValidJSON ? rawSettingsFile : "{}";
483
- process.env.JOYSTICK_SETTINGS = settingsFile;
484
- return JSON.parse(settingsFile);
485
- };
486
- const checkIfJoystickProject = () => {
487
- return fs.existsSync(`${process.cwd()}/.joystick`);
488
- };
489
21
  var start_default = async (args = {}, options = {}) => {
490
22
  await dev({
491
- environment: options?.environment,
492
- process
23
+ environment: args?.environment || "development",
24
+ process,
25
+ port: options?.port ? parseInt(options?.port) : 2600
493
26
  });
494
27
  };
495
28
  export {
@@ -1,7 +1,7 @@
1
1
  import fs from "fs";
2
2
  import generateId from "./generateId.js";
3
3
  var setComponentId_default = (file = "") => {
4
- const componentMapPath = process.env.NODE_ENV === "development" ? `./.joystick/build/componentMap.json` : `./.build/componentMap.json`;
4
+ const componentMapPath = ["development", "test"].includes(process.env.NODE_ENV) ? `./.joystick/build/componentMap.json` : `./.build/componentMap.json`;
5
5
  const componentMapExists = fs.existsSync(componentMapPath);
6
6
  const componentMap = componentMapExists ? JSON.parse(fs.readFileSync(componentMapPath, "utf-8")) : {};
7
7
  const parts = [...file?.matchAll(/\/\/ ui+.*/gi)]?.map((match) => {
@@ -1,30 +1,12 @@
1
- const actionMethod = () => {
2
- try {
3
- } catch (exception) {
4
- throw new Error(`[test.actionMethod] ${exception.message}`);
5
- }
1
+ import dev from "../../lib/dev/index.js";
2
+ var test_default = async (args = {}, options = {}) => {
3
+ await dev({
4
+ environment: "test",
5
+ process,
6
+ port: 1977,
7
+ watch: args?.watch
8
+ });
6
9
  };
7
- const validateOptions = (options) => {
8
- try {
9
- if (!options)
10
- throw new Error("options object is required.");
11
- if (!options.someOption)
12
- throw new Error("options.someOption is required.");
13
- } catch (exception) {
14
- throw new Error(`[test.validateOptions] ${exception.message}`);
15
- }
16
- };
17
- const test = (options, { resolve, reject }) => {
18
- try {
19
- validateOptions(options);
20
- resolve();
21
- } catch (exception) {
22
- reject(`[test] ${exception.message}`);
23
- }
24
- };
25
- var test_default = (options) => new Promise((resolve, reject) => {
26
- test(options, { resolve, reject });
27
- });
28
10
  export {
29
11
  test_default as default
30
12
  };
@@ -1,6 +1,7 @@
1
1
  import getPlatformSafePath from "../getPlatformSafePath.js";
2
2
  var browserPathExclusions_default = [
3
- getPlatformSafePath("lib/node")
3
+ getPlatformSafePath("lib/node"),
4
+ getPlatformSafePath("tests/")
4
5
  ];
5
6
  export {
6
7
  browserPathExclusions_default as default