chore(nx/server): switch to module

This commit is contained in:
Elian Doran 2025-04-22 17:21:51 +03:00
parent b2af043110
commit e76f47ebb4
No known key found for this signature in database
53 changed files with 24810 additions and 3832 deletions

View File

@ -0,0 +1,2 @@
export * from "./lib/gfm.js";
//# sourceMappingURL=index.d.ts.map

View File

@ -0,0 +1 @@
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.js"],"names":[],"mappings":""}

View File

@ -0,0 +1,7 @@
export function gfm(turndownService: any): void;
import highlightedCodeBlock from './highlighted-code-block.js';
import strikethrough from './strikethrough.js';
import tables from './tables.js';
import taskListItems from './task-list-items.js';
export { highlightedCodeBlock, strikethrough, tables, taskListItems };
//# sourceMappingURL=gfm.d.ts.map

View File

@ -0,0 +1 @@
{"version":3,"file":"gfm.d.ts","sourceRoot":"","sources":["../../src/lib/gfm.js"],"names":[],"mappings":"AAKA,gDAOC;iCAZgC,6BAA6B;0BACpC,oBAAoB;mBAC3B,aAAa;0BACN,sBAAsB"}

View File

@ -0,0 +1,2 @@
export default function highlightedCodeBlock(turndownService: any): void;
//# sourceMappingURL=highlighted-code-block.d.ts.map

View File

@ -0,0 +1 @@
{"version":3,"file":"highlighted-code-block.d.ts","sourceRoot":"","sources":["../../src/lib/highlighted-code-block.js"],"names":[],"mappings":"AAEA,yEAsBC"}

View File

@ -0,0 +1,2 @@
export default function strikethrough(turndownService: any): void;
//# sourceMappingURL=strikethrough.d.ts.map

View File

@ -0,0 +1 @@
{"version":3,"file":"strikethrough.d.ts","sourceRoot":"","sources":["../../src/lib/strikethrough.js"],"names":[],"mappings":"AAAA,kEAOC"}

View File

@ -0,0 +1,2 @@
export default function tables(turndownService: any): void;
//# sourceMappingURL=tables.d.ts.map

View File

@ -0,0 +1 @@
{"version":3,"file":"tables.d.ts","sourceRoot":"","sources":["../../src/lib/tables.js"],"names":[],"mappings":"AAoRA,2DASC"}

View File

@ -0,0 +1,2 @@
export default function taskListItems(turndownService: any): void;
//# sourceMappingURL=task-list-items.d.ts.map

View File

@ -0,0 +1 @@
{"version":3,"file":"task-list-items.d.ts","sourceRoot":"","sources":["../../src/lib/task-list-items.js"],"names":[],"mappings":"AAAA,kEASC"}

View File

@ -0,0 +1 @@
{"version":"5.7.3"}

View File

@ -0,0 +1,3 @@
export * from './lib/commons.js';
//# sourceMappingURL=index.js.map

View File

@ -0,0 +1 @@
{"version":3,"sources":["../src/index.ts"],"sourcesContent":["export * from './lib/commons.js';\n"],"names":[],"rangeMappings":"","mappings":"AAAA,cAAc,mBAAmB"}

View File

@ -0,0 +1,12 @@
var Command;
(function(Command) {
Command[Command["jumpToNote"] = 0] = "jumpToNote";
Command[Command["searchNotes"] = 1] = "searchNotes";
Command[Command["createNoteIntoInbox"] = 2] = "createNoteIntoInbox";
Command[Command["showRecentChanges"] = 3] = "showRecentChanges";
Command[Command["showOptions"] = 4] = "showOptions";
Command[Command["createAiChat"] = 5] = "createAiChat";
})(Command || (Command = {}));
export { };
//# sourceMappingURL=hidden_subtree.js.map

View File

@ -0,0 +1 @@
{"version":3,"sources":["../../src/lib/hidden_subtree.ts"],"sourcesContent":["import { AttributeType } from \"./rows.js\";\n\ntype LauncherNoteType = \"launcher\" | \"search\" | \"doc\" | \"noteMap\" | \"contentWidget\" | \"book\" | \"file\" | \"image\" | \"text\" | \"relationMap\" | \"render\" | \"canvas\" | \"mermaid\" | \"webView\" | \"code\" | \"mindMap\" | \"geoMap\";\n\nenum Command {\n jumpToNote,\n searchNotes,\n createNoteIntoInbox,\n showRecentChanges,\n showOptions,\n createAiChat\n}\n\nexport interface HiddenSubtreeAttribute {\n type: AttributeType;\n name: string;\n isInheritable?: boolean;\n value?: string;\n}\n\nexport interface HiddenSubtreeItem {\n notePosition?: number;\n id: string;\n title: string;\n type: LauncherNoteType;\n icon?: string;\n attributes?: HiddenSubtreeAttribute[];\n children?: HiddenSubtreeItem[];\n isExpanded?: boolean;\n baseSize?: string;\n growthFactor?: string;\n targetNoteId?: \"_backendLog\" | \"_globalNoteMap\";\n builtinWidget?:\n | \"todayInJournal\"\n | \"bookmarks\"\n | \"spacer\"\n | \"backInHistoryButton\"\n | \"forwardInHistoryButton\"\n | \"syncStatus\"\n | \"protectedSession\"\n | \"calendar\"\n | \"quickSearch\"\n | \"aiChatLauncher\";\n command?: keyof typeof Command;\n}"],"names":["Command"],"rangeMappings":";;;;;;;;;","mappings":";UAIKA;;;;;;;GAAAA,YAAAA;AAgBL,WAwBC"}

View File

@ -0,0 +1,3 @@
export { };
//# sourceMappingURL=i18n.js.map

View File

@ -0,0 +1 @@
{"version":3,"sources":["../../src/lib/i18n.ts"],"sourcesContent":["export interface Locale {\n id: string;\n name: string;\n /** `true` if the language is a right-to-left one, or `false` if it's left-to-right. */\n rtl?: boolean;\n /** `true` if the language is not supported by the application as a display language, but it is selectable by the user for the content. */\n contentOnly?: boolean;\n /** The value to pass to `--lang` for the Electron instance in order to set it as a locale. Not setting it will hide it from the list of supported locales. */\n electronLocale?: string;\n}"],"names":[],"rangeMappings":"","mappings":"AAAA,WASC"}

View File

@ -0,0 +1,8 @@
export * from "./i18n.js";
export * from "./options_interface.js";
export * from "./keyboard_actions_interface.js";
export * from "./hidden_subtree.js";
export * from "./rows.js";
export * from "./test-utils.js";
//# sourceMappingURL=index.js.map

View File

@ -0,0 +1 @@
{"version":3,"sources":["../../src/lib/index.ts"],"sourcesContent":["export * from \"./i18n.js\";\nexport * from \"./options_interface.js\";\nexport * from \"./keyboard_actions_interface.js\";\nexport * from \"./hidden_subtree.js\";\nexport * from \"./rows.js\";\nexport * from \"./test-utils.js\""],"names":[],"rangeMappings":";;;;;","mappings":"AAAA,cAAc,YAAY;AAC1B,cAAc,yBAAyB;AACvC,cAAc,kCAAkC;AAChD,cAAc,sBAAsB;AACpC,cAAc,YAAY;AAC1B,cAAc,kBAAiB"}

View File

@ -0,0 +1,4 @@
var KeyboardActionNamesEnum;
export { };
//# sourceMappingURL=keyboard_actions_interface.js.map

View File

@ -0,0 +1 @@
{"version":3,"sources":["../../src/lib/keyboard_actions_interface.ts"],"sourcesContent":["const enum KeyboardActionNamesEnum {\n backInNoteHistory,\n forwardInNoteHistory,\n jumpToNote,\n scrollToActiveNote,\n quickSearch,\n searchInSubtree,\n expandSubtree,\n collapseTree,\n collapseSubtree,\n sortChildNotes,\n createNoteAfter,\n createNoteInto,\n createNoteIntoInbox,\n deleteNotes,\n moveNoteUp,\n moveNoteDown,\n moveNoteUpInHierarchy,\n moveNoteDownInHierarchy,\n editNoteTitle,\n editBranchPrefix,\n cloneNotesTo,\n moveNotesTo,\n copyNotesToClipboard,\n pasteNotesFromClipboard,\n cutNotesToClipboard,\n selectAllNotesInParent,\n addNoteAboveToSelection,\n addNoteBelowToSelection,\n duplicateSubtree,\n openNewTab,\n closeActiveTab,\n reopenLastTab,\n activateNextTab,\n activatePreviousTab,\n openNewWindow,\n toggleTray,\n toggleZenMode,\n firstTab,\n secondTab,\n thirdTab,\n fourthTab,\n fifthTab,\n sixthTab,\n seventhTab,\n eigthTab,\n ninthTab,\n lastTab,\n showNoteSource,\n showOptions,\n showRevisions,\n showRecentChanges,\n showSQLConsole,\n showBackendLog,\n showCheatsheet,\n showHelp,\n addLinkToText,\n followLinkUnderCursor,\n insertDateTimeToText,\n pasteMarkdownIntoText,\n cutIntoNote,\n addIncludeNoteToText,\n editReadOnlyNote,\n addNewLabel,\n addNewRelation,\n toggleRibbonTabClassicEditor,\n toggleRibbonTabBasicProperties,\n toggleRibbonTabBookProperties,\n toggleRibbonTabFileProperties,\n toggleRibbonTabImageProperties,\n toggleRibbonTabOwnedAttributes,\n toggleRibbonTabInheritedAttributes,\n toggleRibbonTabPromotedAttributes,\n toggleRibbonTabNoteMap,\n toggleRibbonTabNoteInfo,\n toggleRibbonTabNotePaths,\n toggleRibbonTabSimilarNotes,\n toggleRightPane,\n printActiveNote,\n exportAsPdf,\n openNoteExternally,\n renderActiveNote,\n runActiveNote,\n toggleNoteHoisting,\n unhoist,\n reloadFrontendApp,\n openDevTools,\n findInText,\n toggleLeftPane,\n toggleFullscreen,\n zoomOut,\n zoomIn,\n zoomReset,\n copyWithoutFormatting,\n forceSaveRevision\n}\n\nexport type KeyboardActionNames = keyof typeof KeyboardActionNamesEnum;\n\nexport interface KeyboardShortcut {\n separator?: string;\n actionName?: KeyboardActionNames;\n description?: string;\n defaultShortcuts?: string[];\n effectiveShortcuts?: string[];\n /**\n * Scope here means on which element the keyboard shortcuts are attached - this means that for the shortcut to work,\n * the focus has to be inside the element.\n *\n * So e.g. shortcuts with \"note-tree\" scope work only when the focus is in note tree.\n * This allows to have the same shortcut have different actions attached based on the context\n * e.g. CTRL-C in note tree does something a bit different from CTRL-C in the text editor.\n */\n scope?: \"window\" | \"note-tree\" | \"text-detail\" | \"code-detail\";\n}\n\nexport interface KeyboardShortcutWithRequiredActionName extends KeyboardShortcut {\n actionName: KeyboardActionNames;\n}\n"],"names":[],"rangeMappings":";","mappings":";AAoHA,WAEC"}

View File

@ -0,0 +1,3 @@
export { };
//# sourceMappingURL=options_interface.js.map

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,27 @@
// TODO: Booleans should probably be numbers instead (as SQLite does not have booleans.);
// TODO: check against schema.sql which properties really are "optional"
/**
* There are many different Note types, some of which are entirely opaque to the
* end user. Those types should be used only for checking against, they are
* not for direct use.
*/ export const ALLOWED_NOTE_TYPES = [
"file",
"image",
"search",
"noteMap",
"launcher",
"doc",
"contentWidget",
"text",
"relationMap",
"render",
"canvas",
"mermaid",
"book",
"webView",
"code",
"mindMap",
"geoMap"
];
//# sourceMappingURL=rows.js.map

View File

@ -0,0 +1 @@
{"version":3,"sources":["../../src/lib/rows.ts"],"sourcesContent":["// TODO: Booleans should probably be numbers instead (as SQLite does not have booleans.);\n// TODO: check against schema.sql which properties really are \"optional\"\n\nexport interface AttachmentRow {\n attachmentId?: string;\n ownerId?: string;\n role: string;\n mime: string;\n title: string;\n position?: number;\n blobId?: string;\n isProtected?: boolean;\n dateModified?: string;\n utcDateModified?: string;\n utcDateScheduledForErasureSince?: string;\n isDeleted?: boolean;\n deleteId?: string;\n contentLength?: number;\n content?: Buffer | string;\n}\n\nexport interface RevisionRow {\n revisionId?: string;\n noteId: string;\n type: NoteType;\n mime: string;\n isProtected?: boolean;\n title: string;\n blobId?: string;\n dateLastEdited?: string;\n dateCreated: string;\n utcDateLastEdited?: string;\n utcDateCreated: string;\n utcDateModified: string;\n contentLength?: number;\n}\n\nexport interface RecentNoteRow {\n noteId: string;\n notePath: string;\n utcDateCreated?: string;\n}\n\n/**\n * Database representation of an option.\n *\n * Options are key-value pairs that are used to store information such as user preferences (for example\n * the current theme, sync server information), but also information about the state of the application).\n */\nexport interface OptionRow {\n /** The name of the option. */\n name: string;\n /** The value of the option. */\n value: string;\n /** `true` if the value should be synced across multiple instances (e.g. locale) or `false` if it should be local-only (e.g. theme). */\n isSynced: boolean;\n utcDateModified?: string;\n}\n\nexport interface EtapiTokenRow {\n etapiTokenId?: string;\n name: string;\n tokenHash: string;\n utcDateCreated?: string;\n utcDateModified?: string;\n isDeleted?: boolean;\n}\n\nexport interface BlobRow {\n blobId: string;\n content: string | Buffer;\n contentLength: number;\n dateModified: string;\n utcDateModified: string;\n}\n\nexport type AttributeType = \"label\" | \"relation\" | \"label-definition\" | \"relation-definition\";\n\nexport interface AttributeRow {\n attributeId?: string;\n noteId?: string;\n type: AttributeType;\n name: string;\n position?: number | null;\n value?: string;\n isInheritable?: boolean;\n utcDateModified?: string;\n}\n\nexport interface BranchRow {\n branchId?: string;\n noteId: string;\n parentNoteId: string;\n prefix?: string | null;\n notePosition?: number | null;\n isExpanded?: boolean;\n isDeleted?: boolean;\n utcDateModified?: string;\n}\n\n/**\n * There are many different Note types, some of which are entirely opaque to the\n * end user. Those types should be used only for checking against, they are\n * not for direct use.\n */\nexport const ALLOWED_NOTE_TYPES = [\n \"file\",\n \"image\",\n \"search\",\n \"noteMap\",\n \"launcher\",\n \"doc\",\n \"contentWidget\",\n \"text\",\n \"relationMap\",\n \"render\",\n \"canvas\",\n \"mermaid\",\n \"book\",\n \"webView\",\n \"code\",\n \"mindMap\",\n \"geoMap\"\n] as const;\nexport type NoteType = (typeof ALLOWED_NOTE_TYPES)[number];\n\nexport interface NoteRow {\n noteId: string;\n deleteId: string;\n title: string;\n type: NoteType;\n mime: string;\n isProtected: boolean;\n isDeleted: boolean;\n blobId: string;\n dateCreated: string;\n dateModified: string;\n utcDateCreated: string;\n utcDateModified: string;\n content?: string | Buffer;\n}\n\nexport interface NoteEmbeddingRow {\n embedId: string;\n noteId: string;\n providerId: string;\n modelId: string;\n dimension: number;\n embedding: Buffer;\n version: number;\n dateCreated: string;\n utcDateCreated: string;\n dateModified: string;\n utcDateModified: string;\n}\n"],"names":["ALLOWED_NOTE_TYPES"],"rangeMappings":";;;;;;;;;;;;;;;;;;;;;;;;","mappings":"AAAA,yFAAyF;AACzF,wEAAwE;AAmGxE;;;;CAIC,GACD,OAAO,MAAMA,qBAAqB;IAC9B;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;CACH,CAAU"}

View File

@ -0,0 +1,55 @@
/**
* Reads the level of indentation of the first line and trims the identation for all the text by that amount.
*
* For example, for:
*
* ```json
* {
* "hello": "world"
* }
* ```
*
* it results in:
*
* ```json
* {
* "hello": "world"
* }
* ```
*
* This is meant to be used as a template string, where it allows the indentation of the template without affecting whitespace changes.
*
* @example const html = trimIndentation`\
* <h1>Heading 1</h1>
* <h2>Heading 2</h2>
* <h3>Heading 3</h3>
* <h4>Heading 4</h4>
* <h5>Heading 5</h5>
* <h6>Heading 6</h6>
* `;
* @param strings
* @returns
*/ export function trimIndentation(strings, ...values) {
// Combine the strings with the values using interpolation
let str = strings.reduce((acc, curr, index)=>{
return acc + curr + (values[index] !== undefined ? values[index] : '');
}, '');
// Count the number of spaces on the first line.
let numSpaces = 0;
while(str.charAt(numSpaces) == " " && numSpaces < str.length){
numSpaces++;
}
// Trim the indentation of the first line in all the lines.
const lines = str.split("\n");
const output = [];
for(let i = 0; i < lines.length; i++){
let numSpacesLine = 0;
while(str.charAt(numSpacesLine) == " " && numSpacesLine < str.length){
numSpacesLine++;
}
output.push(lines[i].substring(numSpacesLine));
}
return output.join("\n");
}
//# sourceMappingURL=test-utils.js.map

View File

@ -0,0 +1 @@
{"version":3,"sources":["../../src/lib/test-utils.ts"],"sourcesContent":["/**\n * Reads the level of indentation of the first line and trims the identation for all the text by that amount.\n *\n * For example, for:\n *\n * ```json\n * {\n * \"hello\": \"world\"\n * }\n * ```\n *\n * it results in:\n *\n * ```json\n * {\n * \"hello\": \"world\"\n * }\n * ```\n *\n * This is meant to be used as a template string, where it allows the indentation of the template without affecting whitespace changes.\n *\n * @example const html = trimIndentation`\\\n * <h1>Heading 1</h1>\n * <h2>Heading 2</h2>\n * <h3>Heading 3</h3>\n * <h4>Heading 4</h4>\n * <h5>Heading 5</h5>\n * <h6>Heading 6</h6>\n * `;\n * @param strings\n * @returns\n */\nexport function trimIndentation(strings: TemplateStringsArray, ...values: any[]) {\n // Combine the strings with the values using interpolation\n let str = strings.reduce((acc, curr, index) => {\n return acc + curr + (values[index] !== undefined ? values[index] : '');\n }, '');\n\n // Count the number of spaces on the first line.\n let numSpaces = 0;\n while (str.charAt(numSpaces) == \" \" && numSpaces < str.length) {\n numSpaces++;\n }\n\n // Trim the indentation of the first line in all the lines.\n const lines = str.split(\"\\n\");\n const output = [];\n for (let i = 0; i < lines.length; i++) {\n let numSpacesLine = 0;\n while (str.charAt(numSpacesLine) == \" \" && numSpacesLine < str.length) {\n numSpacesLine++;\n }\n output.push(lines[i].substring(numSpacesLine));\n }\n return output.join(\"\\n\");\n}\n"],"names":["trimIndentation","strings","values","str","reduce","acc","curr","index","undefined","numSpaces","charAt","length","lines","split","output","i","numSpacesLine","push","substring","join"],"rangeMappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;","mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+BC,GACD,OAAO,SAASA,gBAAgBC,OAA6B,EAAE,GAAGC,MAAa;IAC3E,0DAA0D;IAC1D,IAAIC,MAAMF,QAAQG,MAAM,CAAC,CAACC,KAAKC,MAAMC;QACjC,OAAOF,MAAMC,OAAQJ,CAAAA,MAAM,CAACK,MAAM,KAAKC,YAAYN,MAAM,CAACK,MAAM,GAAG,EAAC;IACxE,GAAG;IAEH,gDAAgD;IAChD,IAAIE,YAAY;IAChB,MAAON,IAAIO,MAAM,CAACD,cAAc,OAAOA,YAAYN,IAAIQ,MAAM,CAAE;QAC3DF;IACJ;IAEA,2DAA2D;IAC3D,MAAMG,QAAQT,IAAIU,KAAK,CAAC;IACxB,MAAMC,SAAS,EAAE;IACjB,IAAK,IAAIC,IAAI,GAAGA,IAAIH,MAAMD,MAAM,EAAEI,IAAK;QACnC,IAAIC,gBAAgB;QACpB,MAAOb,IAAIO,MAAM,CAACM,kBAAkB,OAAOA,gBAAgBb,IAAIQ,MAAM,CAAE;YACnEK;QACJ;QACAF,OAAOG,IAAI,CAACL,KAAK,CAACG,EAAE,CAACG,SAAS,CAACF;IACnC;IACA,OAAOF,OAAOK,IAAI,CAAC;AACvB"}

View File

@ -0,0 +1 @@
{"version":"5.7.3"}

38
.nx/cache/run.json vendored
View File

@ -1,21 +1,43 @@
{ {
"run": { "run": {
"command": "nx build turndown-plugin-gfm", "command": "nx build server",
"startTime": "2025-04-22T12:21:01.774Z", "startTime": "2025-04-22T14:20:38.688Z",
"endTime": "2025-04-22T12:21:03.047Z", "endTime": "2025-04-22T14:20:40.576Z",
"inner": false "inner": false
}, },
"tasks": [ "tasks": [
{ {
"taskId": "@triliumnext/turndown-plugin-gfm:build", "taskId": "@triliumnext/commons:build",
"target": "build", "target": "build",
"projectName": "@triliumnext/turndown-plugin-gfm", "projectName": "@triliumnext/commons",
"hash": "6308689797653528488", "hash": "7031649633627448769",
"startTime": "2025-04-22T12:21:01.785Z", "startTime": "2025-04-22T14:20:38.699Z",
"endTime": "2025-04-22T12:21:03.023Z", "endTime": "2025-04-22T14:20:39.906Z",
"params": "", "params": "",
"cacheStatus": "cache-miss", "cacheStatus": "cache-miss",
"status": 0 "status": 0
},
{
"taskId": "@triliumnext/turndown-plugin-gfm:build",
"target": "build",
"projectName": "@triliumnext/turndown-plugin-gfm",
"hash": "11282923462096060321",
"startTime": "2025-04-22T14:20:38.699Z",
"endTime": "2025-04-22T14:20:39.952Z",
"params": "",
"cacheStatus": "cache-miss",
"status": 0
},
{
"taskId": "@triliumnext/server:build",
"target": "build",
"projectName": "@triliumnext/server",
"hash": "4392501429971405707",
"startTime": "2025-04-22T14:20:39.964Z",
"endTime": "2025-04-22T14:20:40.575Z",
"params": "",
"cacheStatus": "cache-miss",
"status": 1
} }
] ]
} }

View File

@ -0,0 +1,2 @@
Compiling with SWC for @triliumnext/turndown-plugin-gfm...

View File

@ -0,0 +1,46 @@
> webpack-cli build --node-env=production
[webpack-cli] Error: Cannot find module 'ajv/dist/compile/codegen'
Require stack:
- /home/elian/Projects/TriliumNext/Notes/node_modules/ajv-keywords/dist/definitions/typeof.js
- /home/elian/Projects/TriliumNext/Notes/node_modules/ajv-keywords/dist/keywords/typeof.js
- /home/elian/Projects/TriliumNext/Notes/node_modules/ajv-keywords/dist/keywords/index.js
- /home/elian/Projects/TriliumNext/Notes/node_modules/ajv-keywords/dist/index.js
- /home/elian/Projects/TriliumNext/Notes/node_modules/schema-utils/dist/validate.js
- /home/elian/Projects/TriliumNext/Notes/node_modules/schema-utils/dist/index.js
- /home/elian/Projects/TriliumNext/Notes/node_modules/copy-webpack-plugin/dist/index.js
- /home/elian/Projects/TriliumNext/Notes/node_modules/@nx/webpack/src/plugins/nx-webpack-plugin/lib/apply-base-config.js
- /home/elian/Projects/TriliumNext/Notes/node_modules/@nx/webpack/src/plugins/nx-webpack-plugin/nx-app-webpack-plugin.js
- /home/elian/Projects/TriliumNext/Notes/node_modules/@nx/webpack/app-plugin.js
- /home/elian/Projects/TriliumNext/Notes/apps/server/webpack.config.cjs
- /home/elian/Projects/TriliumNext/Notes/node_modules/webpack-cli/lib/webpack-cli.js
- /home/elian/Projects/TriliumNext/Notes/node_modules/webpack-cli/lib/bootstrap.js
- /home/elian/Projects/TriliumNext/Notes/node_modules/webpack-cli/bin/cli.js
at Function._resolveFilename (node:internal/modules/cjs/loader:1225:15)
at Function._load (node:internal/modules/cjs/loader:1055:27)
at TracingChannel.traceSync (node:diagnostics_channel:322:14)
at wrapModuleLoad (node:internal/modules/cjs/loader:220:24)
at Module.require (node:internal/modules/cjs/loader:1311:12)
at require (node:internal/modules/helpers:136:16)
at Object.<anonymous> (/home/elian/Projects/TriliumNext/Notes/node_modules/ajv-keywords/dist/definitions/typeof.js:3:19)
at Module._compile (node:internal/modules/cjs/loader:1554:14)
at Object..js (node:internal/modules/cjs/loader:1706:10)
at Module.load (node:internal/modules/cjs/loader:1289:32) {
code: 'MODULE_NOT_FOUND',
requireStack: [
'/home/elian/Projects/TriliumNext/Notes/node_modules/ajv-keywords/dist/definitions/typeof.js',
'/home/elian/Projects/TriliumNext/Notes/node_modules/ajv-keywords/dist/keywords/typeof.js',
'/home/elian/Projects/TriliumNext/Notes/node_modules/ajv-keywords/dist/keywords/index.js',
'/home/elian/Projects/TriliumNext/Notes/node_modules/ajv-keywords/dist/index.js',
'/home/elian/Projects/TriliumNext/Notes/node_modules/schema-utils/dist/validate.js',
'/home/elian/Projects/TriliumNext/Notes/node_modules/schema-utils/dist/index.js',
'/home/elian/Projects/TriliumNext/Notes/node_modules/copy-webpack-plugin/dist/index.js',
'/home/elian/Projects/TriliumNext/Notes/node_modules/@nx/webpack/src/plugins/nx-webpack-plugin/lib/apply-base-config.js',
'/home/elian/Projects/TriliumNext/Notes/node_modules/@nx/webpack/src/plugins/nx-webpack-plugin/nx-app-webpack-plugin.js',
'/home/elian/Projects/TriliumNext/Notes/node_modules/@nx/webpack/app-plugin.js',
'/home/elian/Projects/TriliumNext/Notes/apps/server/webpack.config.cjs',
'/home/elian/Projects/TriliumNext/Notes/node_modules/webpack-cli/lib/webpack-cli.js',
'/home/elian/Projects/TriliumNext/Notes/node_modules/webpack-cli/lib/bootstrap.js',
'/home/elian/Projects/TriliumNext/Notes/node_modules/webpack-cli/bin/cli.js'
]
}

View File

@ -0,0 +1,2 @@
Compiling with SWC for @triliumnext/commons...

View File

@ -830,3 +830,445 @@ Error: Unable to resolve local plugin with import path @nx/webpack/plugin
at async loadSpecifiedNxPlugins (/home/elian/Projects/TriliumNext/Notes/node_modules/nx/src/project-graph/plugins/get-plugins.js:111:9) at async loadSpecifiedNxPlugins (/home/elian/Projects/TriliumNext/Notes/node_modules/nx/src/project-graph/plugins/get-plugins.js:111:9)
Node.js v22.14.0 Node.js v22.14.0
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.043Z - Started listening on: /tmp/nix-shell-1791937-0/32649d4e7241f504a54b/d.sock
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.045Z - [WATCHER]: Subscribed to changes within: /home/elian/Projects/TriliumNext/Notes (native)
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.047Z - Established a connection. Number of open connections: 1
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.047Z - Established a connection. Number of open connections: 2
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.049Z - Closed a connection. Number of open connections: 1
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.050Z - [REQUEST]: Client Request for Project Graph Received
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.236Z - Time taken for 'Load Nx Plugin: /home/elian/Projects/TriliumNext/Notes/node_modules/nx/src/plugins/package-json' 183.43766200000002ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.237Z - Time taken for 'Load Nx Plugin: /home/elian/Projects/TriliumNext/Notes/node_modules/nx/src/plugins/js' 184.517177ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.244Z - Time taken for 'loadDefaultNxPlugins' 192.56135600000002ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.249Z - Time taken for 'Load Nx Plugin: @nx/eslint/plugin' 198.26815399999998ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.256Z - Time taken for 'Load Nx Plugin: @nx/js/typescript' 205.296808ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.294Z - Time taken for 'Load Nx Plugin: @nx/webpack/plugin' 242.65156ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.298Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.298Z - [REQUEST]:
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.298Z - [REQUEST]:
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.312Z - Time taken for 'loadSpecifiedNxPlugins' 245.05547100000004ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.313Z - Established a connection. Number of open connections: 2
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.314Z - Established a connection. Number of open connections: 3
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.314Z - Closed a connection. Number of open connections: 2
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.314Z - Established a connection. Number of open connections: 3
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.317Z - [REQUEST]: Responding to the client. handleGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.317Z - Done responding to the client handleGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.318Z - Handled GLOB. Handling time: 2. Response time: 1.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.318Z - Established a connection. Number of open connections: 4
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.318Z - Closed a connection. Number of open connections: 3
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.318Z - Established a connection. Number of open connections: 4
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.318Z - Closed a connection. Number of open connections: 3
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.318Z - Established a connection. Number of open connections: 4
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.321Z - [REQUEST]: Responding to the client. handleHashGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.321Z - Done responding to the client handleHashGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.321Z - Handled HASH_GLOB. Handling time: 2. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.325Z - [REQUEST]: Responding to the client. handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.325Z - Done responding to the client handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.325Z - Handled HASH_GLOB. Handling time: 4. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.327Z - [REQUEST]: Responding to the client. handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.327Z - Done responding to the client handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.327Z - Handled HASH_GLOB. Handling time: 1. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:17.106Z - Time taken for 'build-project-configs' 771.4791720000001ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:17.112Z - Time taken for '@nx/vite/plugin:createDependencies' 13.781097000000045ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:17.112Z - Time taken for '@nx/js/typescript:createDependencies' 17.800535999999965ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:17.459Z - [REQUEST]: Responding to the client with an error. Error when preparing serialized project graph. Failed to process project graph.
- apps/server/webpack.config.js: ReferenceError: require is not defined
at file:///home/elian/Projects/TriliumNext/Notes/apps/server/webpack.config.js:1:32
at ModuleJobSync.runSync (node:internal/modules/esm/module_job:395:35)
at ModuleLoader.importSyncForRequire (node:internal/modules/esm/loader:360:47)
at loadESMFromCJS (node:internal/modules/cjs/loader:1385:24)
at Module._compile (node:internal/modules/cjs/loader:1536:5)
at Object..js (node:internal/modules/cjs/loader:1706:10)
at Module.load (node:internal/modules/cjs/loader:1289:32)
at Function._load (node:internal/modules/cjs/loader:1108:12)
at TracingChannel.traceSync (node:diagnostics_channel:322:14)
at wrapModuleLoad (node:internal/modules/cjs/loader:220:24)
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:17.462Z - Time taken for 'total execution time for createProjectGraph()' 360.4894939999999ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:17.463Z - Done responding to the client null
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:17.463Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1409. Response time: 4.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:17.468Z - Closed a connection. Number of open connections: 3
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:29.703Z - [WATCHER]: apps/server/webpack.config.js was modified
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:29.703Z - [WATCHER]: Processing file changes in outputs
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:29.806Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:29.806Z - [REQUEST]: apps/server/webpack.config.js
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:29.806Z - [REQUEST]:
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:29.816Z - [REQUEST]: Responding to the client. handleGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:29.817Z - Done responding to the client handleGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:29.817Z - Handled GLOB. Handling time: 2. Response time: 1.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:29.817Z - Time taken for 'hash changed files from watcher' 1.8289890000014566ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:29.819Z - [REQUEST]: Responding to the client. handleHashGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:29.819Z - Done responding to the client handleHashGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:29.819Z - Handled HASH_GLOB. Handling time: 2. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:29.821Z - [REQUEST]: Responding to the client. handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:29.821Z - Done responding to the client handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:29.821Z - Handled HASH_GLOB. Handling time: 2. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:29.825Z - [REQUEST]: Responding to the client. handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:29.825Z - Done responding to the client handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:29.825Z - Handled HASH_GLOB. Handling time: 4. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:29.859Z - Time taken for 'build-project-configs' 33.759664999999586ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:29.862Z - Time taken for '@nx/js/typescript:createDependencies' 10.411420999998882ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:29.863Z - Time taken for '@nx/vite/plugin:createDependencies' 8.803603000000294ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:29.885Z - Time taken for 'total execution time for createProjectGraph()' 28.4164980000005ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:31.966Z - Established a connection. Number of open connections: 4
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:31.966Z - Closed a connection. Number of open connections: 3
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:31.966Z - Established a connection. Number of open connections: 4
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:31.967Z - [REQUEST]: Client Request for Project Graph Received
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:31.968Z - [REQUEST]: Responding to the client with an error. Error when preparing serialized project graph. Failed to process project graph.
- apps/server/webpack.config.js: Error [ERR_REQUIRE_CYCLE_MODULE]: Cannot require() ES Module /home/elian/Projects/TriliumNext/Notes/apps/server/webpack.config.js in a cycle. (from /home/elian/Projects/TriliumNext/Notes/node_modules/@nx/webpack/src/utils/webpack/resolve-user-defined-webpack-config.js)
at ModuleLoader.importSyncForRequire (node:internal/modules/esm/loader:346:15)
at loadESMFromCJS (node:internal/modules/cjs/loader:1385:24)
at Module._compile (node:internal/modules/cjs/loader:1536:5)
at Object..js (node:internal/modules/cjs/loader:1706:10)
at Module.load (node:internal/modules/cjs/loader:1289:32)
at Function._load (node:internal/modules/cjs/loader:1108:12)
at TracingChannel.traceSync (node:diagnostics_channel:322:14)
at wrapModuleLoad (node:internal/modules/cjs/loader:220:24)
at Module.require (node:internal/modules/cjs/loader:1311:12)
at require (node:internal/modules/helpers:136:16)
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:31.971Z - Done responding to the client null
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:31.971Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 3.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:31.976Z - Closed a connection. Number of open connections: 3
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:00.395Z - [WATCHER]: apps/server/webpack.config.js was modified
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:00.395Z - [WATCHER]: Processing file changes in outputs
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:00.497Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:00.497Z - [REQUEST]: apps/server/webpack.config.js
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:00.497Z - [REQUEST]:
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:00.508Z - [REQUEST]: Responding to the client. handleGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:00.508Z - Done responding to the client handleGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:00.508Z - Handled GLOB. Handling time: 3. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:00.508Z - Time taken for 'hash changed files from watcher' 1.8527000000030966ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:00.510Z - [REQUEST]: Responding to the client. handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:00.510Z - Done responding to the client handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:00.510Z - Handled HASH_GLOB. Handling time: 1. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:00.512Z - [REQUEST]: Responding to the client. handleHashGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:00.512Z - Done responding to the client handleHashGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:00.512Z - Handled HASH_GLOB. Handling time: 1. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:00.516Z - [REQUEST]: Responding to the client. handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:00.516Z - Done responding to the client handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:00.516Z - Handled HASH_GLOB. Handling time: 3. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:00.555Z - Time taken for 'build-project-configs' 36.302313000007416ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:00.558Z - Time taken for '@nx/vite/plugin:createDependencies' 9.674249000003329ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:00.559Z - Time taken for '@nx/js/typescript:createDependencies' 12.736064999990049ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:00.581Z - Time taken for 'total execution time for createProjectGraph()' 29.41765899999882ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:22.833Z - [WATCHER]: apps/server/webpack.config.js was modified
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:22.834Z - [WATCHER]: Processing file changes in outputs
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:23.035Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:23.035Z - [REQUEST]: apps/server/webpack.config.js
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:23.035Z - [REQUEST]:
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:23.046Z - [REQUEST]: Responding to the client. handleGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:23.046Z - Done responding to the client handleGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:23.046Z - Handled GLOB. Handling time: 2. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:23.046Z - Time taken for 'hash changed files from watcher' 1.8452089999918826ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:23.048Z - [REQUEST]: Responding to the client. handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:23.048Z - Done responding to the client handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:23.048Z - Handled HASH_GLOB. Handling time: 1. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:23.050Z - [REQUEST]: Responding to the client. handleHashGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:23.050Z - Done responding to the client handleHashGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:23.050Z - Handled HASH_GLOB. Handling time: 1. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:23.054Z - [REQUEST]: Responding to the client. handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:23.054Z - Done responding to the client handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:23.054Z - Handled HASH_GLOB. Handling time: 3. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:23.089Z - Time taken for 'build-project-configs' 30.623645999992732ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:23.092Z - Time taken for '@nx/vite/plugin:createDependencies' 9.75645899999654ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:23.093Z - Time taken for '@nx/js/typescript:createDependencies' 12.789344999997411ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:23.115Z - Time taken for 'total execution time for createProjectGraph()' 29.478128999995533ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:56.435Z - [WATCHER]: apps/server/webpack.config.js was modified
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:56.435Z - [WATCHER]: Processing file changes in outputs
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:56.837Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:56.837Z - [REQUEST]: apps/server/webpack.config.js
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:56.838Z - [REQUEST]:
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:56.847Z - [REQUEST]: Responding to the client. handleGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:56.847Z - Done responding to the client handleGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:56.847Z - Handled GLOB. Handling time: 2. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:56.847Z - Time taken for 'hash changed files from watcher' 2.123859999992419ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:56.849Z - [REQUEST]: Responding to the client. handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:56.849Z - Done responding to the client handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:56.849Z - Handled HASH_GLOB. Handling time: 1. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:56.851Z - [REQUEST]: Responding to the client. handleHashGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:56.851Z - Done responding to the client handleHashGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:56.851Z - Handled HASH_GLOB. Handling time: 2. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:56.855Z - [REQUEST]: Responding to the client. handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:56.855Z - Done responding to the client handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:56.855Z - Handled HASH_GLOB. Handling time: 3. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:56.890Z - Time taken for 'build-project-configs' 33.69587200001115ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:56.897Z - Time taken for '@nx/js/typescript:createDependencies' 14.273482999997213ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:56.921Z - Time taken for 'total execution time for createProjectGraph()' 31.034029000002192ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:59.019Z - Established a connection. Number of open connections: 4
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:59.019Z - Closed a connection. Number of open connections: 3
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:59.019Z - Established a connection. Number of open connections: 4
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:59.021Z - [REQUEST]: Client Request for Project Graph Received
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:59.021Z - [REQUEST]: Responding to the client with an error. Error when preparing serialized project graph. Failed to process project graph.
- apps/server/webpack.config.js: Error [ERR_REQUIRE_CYCLE_MODULE]: Cannot require() ES Module /home/elian/Projects/TriliumNext/Notes/apps/server/webpack.config.js in a cycle. (from /home/elian/Projects/TriliumNext/Notes/node_modules/@nx/webpack/src/utils/webpack/resolve-user-defined-webpack-config.js)
at ModuleLoader.importSyncForRequire (node:internal/modules/esm/loader:346:15)
at loadESMFromCJS (node:internal/modules/cjs/loader:1385:24)
at Module._compile (node:internal/modules/cjs/loader:1536:5)
at Object..js (node:internal/modules/cjs/loader:1706:10)
at Module.load (node:internal/modules/cjs/loader:1289:32)
at Function._load (node:internal/modules/cjs/loader:1108:12)
at TracingChannel.traceSync (node:diagnostics_channel:322:14)
at wrapModuleLoad (node:internal/modules/cjs/loader:220:24)
at Module.require (node:internal/modules/cjs/loader:1311:12)
at require (node:internal/modules/helpers:136:16)
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:59.025Z - Done responding to the client null
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:59.025Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 4.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:59.031Z - Closed a connection. Number of open connections: 3
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:15.522Z - [WATCHER]: apps/server/webpack.config.js was created or restored
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:15.522Z - [WATCHER]: Processing file changes in outputs
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:15.625Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:15.625Z - [REQUEST]: apps/server/webpack.config.js
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:15.625Z - [REQUEST]:
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:15.636Z - [REQUEST]: Responding to the client. handleGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:15.637Z - Done responding to the client handleGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:15.637Z - Handled GLOB. Handling time: 2. Response time: 1.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:15.637Z - Time taken for 'hash changed files from watcher' 2.2684409999928903ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:15.639Z - [REQUEST]: Responding to the client. handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:15.639Z - Done responding to the client handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:15.639Z - Handled HASH_GLOB. Handling time: 2. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:15.641Z - [REQUEST]: Responding to the client. handleHashGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:15.641Z - Done responding to the client handleHashGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:15.641Z - Handled HASH_GLOB. Handling time: 1. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:15.646Z - [REQUEST]: Responding to the client. handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:15.646Z - Done responding to the client handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:15.646Z - Handled HASH_GLOB. Handling time: 4. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:15.665Z - Time taken for 'build-project-configs' 18.615836000011768ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:15.670Z - Time taken for '@nx/js/typescript:createDependencies' 12.521504000003915ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:15.691Z - Time taken for 'total execution time for createProjectGraph()' 27.091768999991473ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:18.952Z - [WATCHER]: 1 file(s) created or restored, 0 file(s) modified, 1 file(s) deleted
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:18.952Z - [WATCHER]: Processing file changes in outputs
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.054Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.054Z - [REQUEST]: apps/server/webpack.config.cjs
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.054Z - [REQUEST]: apps/server/webpack.config.js
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.064Z - [REQUEST]: Responding to the client. handleGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.064Z - Done responding to the client handleGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.064Z - Handled GLOB. Handling time: 3. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.064Z - Time taken for 'hash changed files from watcher' 1.8597799999988638ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.066Z - [REQUEST]: Responding to the client. handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.066Z - Done responding to the client handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.066Z - Handled HASH_GLOB. Handling time: 2. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.067Z - [REQUEST]: Responding to the client. handleHashGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.068Z - Done responding to the client handleHashGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.068Z - Handled HASH_GLOB. Handling time: 1. Response time: 1.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.072Z - [REQUEST]: Responding to the client. handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.072Z - Done responding to the client handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.072Z - Handled HASH_GLOB. Handling time: 4. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.274Z - Time taken for 'build-project-configs' 197.9390190000122ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.278Z - Time taken for '@nx/vite/plugin:createDependencies' 10.601464000006672ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.278Z - Time taken for '@nx/js/typescript:createDependencies' 13.029176999989431ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.303Z - [SYNC]: collect registered sync generators
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.303Z - [SYNC]: scheduling: ["@nx/js:typescript-sync"]
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.304Z - Time taken for 'total execution time for createProjectGraph()' 29.645423000009032ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.403Z - [SYNC]: running scheduled generator @nx/js:typescript-sync
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.613Z - Established a connection. Number of open connections: 4
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.614Z - Established a connection. Number of open connections: 5
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.614Z - Closed a connection. Number of open connections: 4
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.615Z - [REQUEST]: Client Request for Project Graph Received
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.615Z - [REQUEST]: Responding to the client. project-graph
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.615Z - Time taken for 'total for creating and serializing project graph' 0.16727000000537373ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.616Z - Done responding to the client project-graph
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.616Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 1.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.641Z - [SYNC]: @nx/js:typescript-sync changes: tsconfig.json, apps/server/tsconfig.app.json, apps/server/tsconfig.json
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.641Z - Time taken for 'run-sync-generator:@nx/js:typescript-sync' 237.69391400000313ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:21.996Z - Established a connection. Number of open connections: 5
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:21.997Z - Closed a connection. Number of open connections: 4
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:21.997Z - Established a connection. Number of open connections: 5
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:21.998Z - [REQUEST]: Client Request for Project Graph Received
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:21.998Z - [REQUEST]: Responding to the client. project-graph
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:21.999Z - Time taken for 'total for creating and serializing project graph' 0.20313100001658313ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:22.000Z - Done responding to the client project-graph
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:22.000Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:22.007Z - [REQUEST]: Responding to the client. handleRunPreTasksExecution
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:22.007Z - Done responding to the client handleRunPreTasksExecution
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:22.007Z - Handled PRE_TASKS_EXECUTION. Handling time: 0. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:22.007Z - Time taken for 'preTasksExecution' 0.17815100000007078ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:22.011Z - [SYNC]: get sync generators changes on demand ["@nx/js:typescript-sync"]
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:22.011Z - [SYNC]: @nx/js:typescript-sync not scheduled and has cached result, returning cached result
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:22.011Z - [REQUEST]: Responding to the client. handleGetSyncGeneratorChanges
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:22.011Z - Done responding to the client handleGetSyncGeneratorChanges
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:22.011Z - Handled GET_SYNC_GENERATOR_CHANGES. Handling time: 0. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.402Z - [SYNC]: flush sync generators changes ["@nx/js:typescript-sync"]
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.402Z - [SYNC]: get sync generators changes on demand ["@nx/js:typescript-sync"]
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.402Z - [SYNC]: @nx/js:typescript-sync not scheduled and has cached result, returning cached result
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.403Z - [REQUEST]: Responding to the client. handleFlushSyncGeneratorChangesToDisk
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.403Z - Done responding to the client handleFlushSyncGeneratorChangesToDisk
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.403Z - Handled CLEAR_CACHED_SYNC_GENERATOR_CHANGES. Handling time: 2. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.403Z - Time taken for 'flush sync generator changes to disk' 0.552123000001302ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.403Z - [REQUEST]: Client Request for Project Graph Received
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.405Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.405Z - [REQUEST]: tsconfig.json,apps/server/tsconfig.app.json,apps/server/tsconfig.json
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.405Z - [REQUEST]:
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.413Z - Time taken for 'hash changed files from watcher' 1.9449000000022352ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.416Z - [REQUEST]: Responding to the client. handleGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.416Z - Done responding to the client handleGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.416Z - Handled GLOB. Handling time: 3. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.418Z - [REQUEST]: Responding to the client. handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.419Z - Done responding to the client handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.419Z - Handled HASH_GLOB. Handling time: 1. Response time: 1.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.421Z - [REQUEST]: Responding to the client. handleHashGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.421Z - Done responding to the client handleHashGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.421Z - Handled HASH_GLOB. Handling time: 2. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.426Z - [REQUEST]: Responding to the client. handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.427Z - Done responding to the client handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.427Z - Handled HASH_GLOB. Handling time: 4. Response time: 1.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.460Z - Time taken for 'build-project-configs' 33.245070999983ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.460Z - [WATCHER]: 0 file(s) created or restored, 3 file(s) modified, 0 file(s) deleted
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.461Z - [WATCHER]: Processing file changes in outputs
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.464Z - Time taken for '@nx/vite/plugin:createDependencies' 9.863790999981575ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.464Z - Time taken for '@nx/js/typescript:createDependencies' 12.424624000006588ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.489Z - [SYNC]: collect registered sync generators
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.489Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.489Z - [SYNC]: scheduling: ["@nx/js:typescript-sync"]
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.489Z - [REQUEST]: Responding to the client. project-graph
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.490Z - Time taken for 'total for creating and serializing project graph' 85.81992400001036ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.491Z - Done responding to the client project-graph
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.491Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 86. Response time: 2.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.514Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.514Z - [REQUEST]: apps/server/tsconfig.json,apps/server/tsconfig.app.json,tsconfig.json
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.514Z - [REQUEST]:
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.522Z - Time taken for 'hash changed files from watcher' 2.1999310000101104ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.525Z - [REQUEST]: Responding to the client. handleGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.525Z - Done responding to the client handleGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.525Z - Handled GLOB. Handling time: 2. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.527Z - [REQUEST]: Responding to the client. handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.528Z - Done responding to the client handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.528Z - Handled HASH_GLOB. Handling time: 1. Response time: 1.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.529Z - [REQUEST]: Responding to the client. handleHashGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.529Z - Done responding to the client handleHashGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.530Z - Handled HASH_GLOB. Handling time: 1. Response time: 1.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.534Z - [REQUEST]: Responding to the client. handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.534Z - Done responding to the client handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.534Z - Handled HASH_GLOB. Handling time: 4. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.551Z - Time taken for 'build-project-configs' 17.35972999999649ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.554Z - Time taken for '@nx/vite/plugin:createDependencies' 8.124021999974502ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.554Z - Time taken for '@nx/js/typescript:createDependencies' 10.742545999994036ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.575Z - [SYNC]: collect registered sync generators
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.575Z - [SYNC]: project graph hash is the same, not collecting task sync generators
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.575Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.575Z - [SYNC]: scheduling: ["@nx/js:typescript-sync"]
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.587Z - [REQUEST]: Responding to the client. handleHashTasks
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.588Z - Done responding to the client handleHashTasks
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.588Z - Handled HASH_TASKS. Handling time: 75. Response time: 1.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.588Z - Time taken for 'total execution time for createProjectGraph()' 23.644272999983514ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.589Z - [SYNC]: running scheduled generator @nx/js:typescript-sync
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.590Z - [REQUEST]: Client Request for Project Graph Received
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.590Z - [REQUEST]: Responding to the client. project-graph
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.591Z - Time taken for 'total for creating and serializing project graph' 0.21177099997294135ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.592Z - Done responding to the client project-graph
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.592Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.605Z - [SYNC]: @nx/js:typescript-sync changes:
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.605Z - Time taken for 'run-sync-generator:@nx/js:typescript-sync' 16.46172600000864ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.696Z - [REQUEST]: Responding to the client. handleGetEstimatedTaskTimings
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.696Z - Done responding to the client handleGetEstimatedTaskTimings
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.696Z - Handled GET_ESTIMATED_TASK_TIMINGS. Handling time: 1. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.958Z - [WATCHER]: Processing file changes in outputs
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.958Z - [WATCHER]: 0 file(s) created or restored, 0 file(s) modified, 30 file(s) deleted
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.062Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.062Z - [REQUEST]:
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.062Z - [REQUEST]: packages/commons/dist/index.js,packages/commons/dist/lib/hidden_subtree.js.map,packages/commons/dist/lib/test-utils.js,packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts,packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts,packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts,packages/commons/dist/lib/test-utils.js.map,packages/commons/dist/lib/i18n.js.map,packages/commons/dist/lib/index.js.map,packages/turndown-plugin-gfm/dist/lib/gfm.d.ts.map,packages/turndown-plugin-gfm/dist/lib/tables.d.ts.map,packages/commons/dist/lib/keyboard_actions_interface.js,packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts.map,packages/turndown-plugin-gfm/dist/lib/gfm.d.ts,packages/turndown-plugin-gfm/dist/lib/tables.d.ts,packages/turndown-plugin-gfm/dist/tsconfig.lib.tsbuildinfo,packages/commons/dist/lib/options_interface.js.map,packages/commons/dist/lib/index.js,packages/commons/dist/lib/options_interface.js,packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts.map,packages/commons/dist/lib/rows.js,packages/commons/dist/tsconfig.lib.tsbuildinfo,packages/commons/dist/lib/i18n.js,packages/commons/dist/index.js.map,packages/turndown-plugin-gfm/dist/index.d.ts,packages/turndown-plugin-gfm/dist/index.d.ts.map,packages/commons/dist/lib/keyboard_actions_interface.js.map,packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts.map,packages/commons/dist/lib/rows.js.map,packages/commons/dist/lib/hidden_subtree.js
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.107Z - [REQUEST]: Responding to the client. handleGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.107Z - Done responding to the client handleGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.107Z - Handled GLOB. Handling time: 11. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.111Z - [REQUEST]: Responding to the client. handleHashGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.111Z - Done responding to the client handleHashGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.112Z - Handled HASH_GLOB. Handling time: 3. Response time: 1.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.112Z - Time taken for 'hash changed files from watcher' 2.5785029999969993ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.120Z - [REQUEST]: Responding to the client. handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.120Z - Done responding to the client handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.120Z - Handled HASH_GLOB. Handling time: 8. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.124Z - [REQUEST]: Responding to the client. handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.125Z - Done responding to the client handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.125Z - Handled HASH_GLOB. Handling time: 3. Response time: 1.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.165Z - Time taken for 'build-project-configs' 63.20101699998486ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.169Z - Time taken for '@nx/vite/plugin:createDependencies' 9.743079999985639ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.171Z - Time taken for '@nx/js/typescript:createDependencies' 14.5179449999996ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.194Z - [SYNC]: collect registered sync generators
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.194Z - [SYNC]: project graph hash is the same, not collecting task sync generators
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.194Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.194Z - [SYNC]: scheduling: ["@nx/js:typescript-sync"]
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.194Z - Time taken for 'total execution time for createProjectGraph()' 28.30424599998514ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.195Z - [WATCHER]: 16 file(s) created or restored, 0 file(s) modified, 0 file(s) deleted
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.195Z - [WATCHER]: Processing file changes in outputs
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.298Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.298Z - [REQUEST]: packages/commons/dist/lib/i18n.js,packages/commons/dist/index.js,packages/commons/dist/lib/hidden_subtree.js,packages/commons/dist/lib/index.js,packages/commons/dist/lib/hidden_subtree.js.map,packages/commons/dist/lib/test-utils.js,packages/commons/dist/lib/options_interface.js,packages/commons/dist/index.js.map,packages/commons/dist/lib/keyboard_actions_interface.js.map,packages/commons/dist/lib/rows.js,packages/commons/dist/lib/rows.js.map,packages/commons/dist/lib/options_interface.js.map,packages/commons/dist/lib/i18n.js.map,packages/commons/dist/lib/keyboard_actions_interface.js,packages/commons/dist/lib/index.js.map,packages/commons/dist/lib/test-utils.js.map
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.298Z - [REQUEST]:
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.309Z - [REQUEST]: Responding to the client. handleGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.309Z - Done responding to the client handleGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.309Z - Handled GLOB. Handling time: 3. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.309Z - Time taken for 'hash changed files from watcher' 2.267041999992216ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.311Z - [REQUEST]: Responding to the client. handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.311Z - Done responding to the client handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.311Z - Handled HASH_GLOB. Handling time: 2. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.314Z - [REQUEST]: Responding to the client. handleHashGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.314Z - Done responding to the client handleHashGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.314Z - Handled HASH_GLOB. Handling time: 2. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.319Z - [REQUEST]: Responding to the client. handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.319Z - Done responding to the client handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.319Z - Handled HASH_GLOB. Handling time: 5. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.347Z - Time taken for 'build-project-configs' 29.994765000010375ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.351Z - Time taken for '@nx/vite/plugin:createDependencies' 8.959487000014633ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.352Z - Time taken for '@nx/js/typescript:createDependencies' 11.548760000005132ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.378Z - [SYNC]: collect registered sync generators
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.378Z - [SYNC]: project graph hash is the same, not collecting task sync generators
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.378Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.378Z - [SYNC]: scheduling: ["@nx/js:typescript-sync"]
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.378Z - Time taken for 'total execution time for createProjectGraph()' 27.95946399998502ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.394Z - [SYNC]: running scheduled generator @nx/js:typescript-sync
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.395Z - [REQUEST]: Client Request for Project Graph Received
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.396Z - [REQUEST]: Responding to the client. project-graph
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.396Z - Time taken for 'total for creating and serializing project graph' 0.15040099999168888ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.396Z - Done responding to the client project-graph
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.396Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.405Z - [SYNC]: @nx/js:typescript-sync changes:
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.405Z - Time taken for 'run-sync-generator:@nx/js:typescript-sync' 10.86268600000767ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.909Z - [REQUEST]: Responding to the client. recordOutputsHash
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.909Z - Done responding to the client recordOutputsHash
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.909Z - Handled RECORD_OUTPUTS_HASH. Handling time: 3. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.935Z - [WATCHER]: 14 file(s) created or restored, 0 file(s) modified, 0 file(s) deleted
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.935Z - [WATCHER]: Processing file changes in outputs
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.955Z - [REQUEST]: Responding to the client. recordOutputsHash
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.955Z - Done responding to the client recordOutputsHash
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.955Z - Handled RECORD_OUTPUTS_HASH. Handling time: 2. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.038Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.038Z - [REQUEST]: packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts.map,packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts,packages/turndown-plugin-gfm/dist/index.d.ts.map,packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts,packages/turndown-plugin-gfm/dist/tsconfig.lib.tsbuildinfo,packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts.map,packages/turndown-plugin-gfm/dist/lib/tables.d.ts,packages/turndown-plugin-gfm/dist/lib/gfm.d.ts.map,packages/turndown-plugin-gfm/dist/lib/gfm.d.ts,packages/turndown-plugin-gfm/dist/lib/tables.d.ts.map,packages/commons/dist/tsconfig.lib.tsbuildinfo,packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts,packages/turndown-plugin-gfm/dist/index.d.ts,packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts.map
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.038Z - [REQUEST]:
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.048Z - [REQUEST]: Responding to the client. handleGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.049Z - Done responding to the client handleGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.049Z - Handled GLOB. Handling time: 2. Response time: 1.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.049Z - Time taken for 'hash changed files from watcher' 2.462903000006918ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.051Z - [REQUEST]: Responding to the client. handleHashGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.051Z - Done responding to the client handleHashGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.051Z - Handled HASH_GLOB. Handling time: 2. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.053Z - [REQUEST]: Responding to the client. handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.053Z - Done responding to the client handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.053Z - Handled HASH_GLOB. Handling time: 2. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.058Z - [REQUEST]: Responding to the client. handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.058Z - Done responding to the client handleHashMultiGlob
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.058Z - Handled HASH_GLOB. Handling time: 5. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.074Z - Time taken for 'build-project-configs' 18.61340599998948ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.079Z - Time taken for '@nx/vite/plugin:createDependencies' 9.794071000011172ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.080Z - Time taken for '@nx/js/typescript:createDependencies' 12.206682999996701ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.102Z - [SYNC]: collect registered sync generators
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.102Z - [SYNC]: project graph hash is the same, not collecting task sync generators
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.102Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.102Z - [SYNC]: scheduling: ["@nx/js:typescript-sync"]
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.102Z - Time taken for 'total execution time for createProjectGraph()' 25.120970000018133ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.502Z - [SYNC]: running scheduled generator @nx/js:typescript-sync
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.503Z - [REQUEST]: Client Request for Project Graph Received
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.504Z - [REQUEST]: Responding to the client. project-graph
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.504Z - Time taken for 'total for creating and serializing project graph' 0.2310109999962151ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.504Z - Done responding to the client project-graph
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.504Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.512Z - [SYNC]: @nx/js:typescript-sync changes:
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.512Z - Time taken for 'run-sync-generator:@nx/js:typescript-sync' 9.461009999999078ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.575Z - [REQUEST]: Responding to the client. recordOutputsHash
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.575Z - Done responding to the client recordOutputsHash
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.575Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.599Z - [REQUEST]: Responding to the client. handleRecordTaskRuns
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.600Z - Done responding to the client handleRecordTaskRuns
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.600Z - Handled RECORD_TASK_RUNS. Handling time: 21. Response time: 1.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.601Z - [REQUEST]: Responding to the client. handleGetFlakyTasks
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.601Z - Done responding to the client handleGetFlakyTasks
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.601Z - Handled GET_FLAKY_TASKS. Handling time: 1. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.604Z - [REQUEST]: Responding to the client. handleRunPostTasksExecution
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.604Z - Done responding to the client handleRunPostTasksExecution
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.604Z - Handled POST_TASKS_EXECUTION. Handling time: 0. Response time: 0.
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.604Z - Time taken for 'postTasksExecution' 0.17494100000476465ms
[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.612Z - Closed a connection. Number of open connections: 4

View File

@ -1,3 +1,3 @@
{ {
"processId": 1901838 "processId": 1905732
} }

View File

@ -340,5 +340,308 @@
}, },
"1052553638334998452": {}, "1052553638334998452": {},
"3829001738606284542": {}, "3829001738606284542": {},
"16880944484164187069": {} "16880944484164187069": {},
"14854670996815177606": {},
"11102029127173379308": {
"apps/server": {
"targets": {
"lint": {
"command": "eslint .",
"cache": true,
"options": {
"cwd": "apps/server"
},
"inputs": [
"default",
"^default",
"{workspaceRoot}/eslint.config.mjs",
"{projectRoot}/eslint.config.mjs",
"{workspaceRoot}/tools/eslint-rules/**/*",
{
"externalDependencies": [
"eslint"
]
}
],
"outputs": [
"{options.outputFile}"
],
"metadata": {
"technologies": [
"eslint"
],
"description": "Runs ESLint on project",
"help": {
"command": "npx eslint --help",
"example": {
"options": {
"max-warnings": 0
}
}
}
}
}
}
}
},
"13097364906395379160": {
"apps/server": {
"targets": {
"lint": {
"command": "eslint .",
"cache": true,
"options": {
"cwd": "apps/server"
},
"inputs": [
"default",
"^default",
"{workspaceRoot}/eslint.config.mjs",
"{projectRoot}/eslint.config.mjs",
"{workspaceRoot}/tools/eslint-rules/**/*",
{
"externalDependencies": [
"eslint"
]
}
],
"outputs": [
"{options.outputFile}"
],
"metadata": {
"technologies": [
"eslint"
],
"description": "Runs ESLint on project",
"help": {
"command": "npx eslint --help",
"example": {
"options": {
"max-warnings": 0
}
}
}
}
}
}
}
},
"11218667268180711239": {},
"15515751049355836315": {
"apps/server": {
"targets": {
"lint": {
"command": "eslint .",
"cache": true,
"options": {
"cwd": "apps/server"
},
"inputs": [
"default",
"^default",
"{workspaceRoot}/eslint.config.mjs",
"{projectRoot}/eslint.config.mjs",
"{workspaceRoot}/tools/eslint-rules/**/*",
{
"externalDependencies": [
"eslint"
]
}
],
"outputs": [
"{options.outputFile}"
],
"metadata": {
"technologies": [
"eslint"
],
"description": "Runs ESLint on project",
"help": {
"command": "npx eslint --help",
"example": {
"options": {
"max-warnings": 0
}
}
}
}
}
}
}
},
"5557606338589588129": {},
"3146687162059234397": {
"apps/server": {
"targets": {
"lint": {
"command": "eslint .",
"cache": true,
"options": {
"cwd": "apps/server"
},
"inputs": [
"default",
"^default",
"{workspaceRoot}/eslint.config.mjs",
"{projectRoot}/eslint.config.mjs",
"{workspaceRoot}/tools/eslint-rules/**/*",
{
"externalDependencies": [
"eslint"
]
}
],
"outputs": [
"{options.outputFile}"
],
"metadata": {
"technologies": [
"eslint"
],
"description": "Runs ESLint on project",
"help": {
"command": "npx eslint --help",
"example": {
"options": {
"max-warnings": 0
}
}
}
}
}
}
}
},
"18150630873143563891": {},
"11511921574547400961": {
"apps/server": {
"targets": {
"lint": {
"command": "eslint .",
"cache": true,
"options": {
"cwd": "apps/server"
},
"inputs": [
"default",
"^default",
"{workspaceRoot}/eslint.config.mjs",
"{projectRoot}/eslint.config.mjs",
"{workspaceRoot}/tools/eslint-rules/**/*",
{
"externalDependencies": [
"eslint"
]
}
],
"outputs": [
"{options.outputFile}"
],
"metadata": {
"technologies": [
"eslint"
],
"description": "Runs ESLint on project",
"help": {
"command": "npx eslint --help",
"example": {
"options": {
"max-warnings": 0
}
}
}
}
}
}
}
},
"11235679623152733539": {},
"9764826797200088656": {
"apps/server": {
"targets": {
"lint": {
"command": "eslint .",
"cache": true,
"options": {
"cwd": "apps/server"
},
"inputs": [
"default",
"^default",
"{workspaceRoot}/eslint.config.mjs",
"{projectRoot}/eslint.config.mjs",
"{workspaceRoot}/tools/eslint-rules/**/*",
{
"externalDependencies": [
"eslint"
]
}
],
"outputs": [
"{options.outputFile}"
],
"metadata": {
"technologies": [
"eslint"
],
"description": "Runs ESLint on project",
"help": {
"command": "npx eslint --help",
"example": {
"options": {
"max-warnings": 0
}
}
}
}
}
}
}
},
"7967132459110065866": {},
"11984459376190434330": {
"apps/server": {
"targets": {
"lint": {
"command": "eslint .",
"cache": true,
"options": {
"cwd": "apps/server"
},
"inputs": [
"default",
"^default",
"{workspaceRoot}/eslint.config.mjs",
"{projectRoot}/eslint.config.mjs",
"{workspaceRoot}/tools/eslint-rules/**/*",
{
"externalDependencies": [
"eslint"
]
}
],
"outputs": [
"{options.outputFile}"
],
"metadata": {
"technologies": [
"eslint"
],
"description": "Runs ESLint on project",
"help": {
"command": "npx eslint --help",
"example": {
"options": {
"max-warnings": 0
}
}
}
}
}
}
}
},
"284051547504069236": {},
"5459680711337805685": {},
"13775029493605444442": {}
} }

File diff suppressed because it is too large Load Diff

View File

@ -1 +1 @@
12036982028021686612 15773920245629324736

Binary file not shown.

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,378 @@
{ {
"apps/server": {
"root": [
"apps/server/package.json",
"nx/core/package-json"
],
"projectType": [
"apps/server/webpack.config.cjs",
"@nx/webpack/plugin"
],
"targets": [
"apps/server/tsconfig.app.json",
"@nx/js/typescript"
],
"targets.typecheck": [
"apps/server/tsconfig.json",
"@nx/js/typescript"
],
"targets.typecheck.dependsOn": [
"apps/server/tsconfig.json",
"@nx/js/typescript"
],
"targets.typecheck.options": [
"apps/server/tsconfig.json",
"@nx/js/typescript"
],
"targets.typecheck.cache": [
"apps/server/tsconfig.json",
"@nx/js/typescript"
],
"targets.typecheck.inputs": [
"apps/server/tsconfig.json",
"@nx/js/typescript"
],
"targets.typecheck.outputs": [
"apps/server/tsconfig.json",
"@nx/js/typescript"
],
"targets.typecheck.syncGenerators": [
"apps/server/tsconfig.json",
"@nx/js/typescript"
],
"targets.typecheck.metadata": [
"apps/server/tsconfig.json",
"@nx/js/typescript"
],
"targets.typecheck.executor": [
"apps/server/tsconfig.json",
"@nx/js/typescript"
],
"targets.typecheck.options.cwd": [
"apps/server/tsconfig.json",
"@nx/js/typescript"
],
"targets.typecheck.options.command": [
"apps/server/tsconfig.json",
"@nx/js/typescript"
],
"targets.typecheck.metadata.technologies": [
"apps/server/tsconfig.json",
"@nx/js/typescript"
],
"targets.typecheck.metadata.technologies.0": [
"apps/server/tsconfig.json",
"@nx/js/typescript"
],
"targets.typecheck.metadata.description": [
"apps/server/tsconfig.json",
"@nx/js/typescript"
],
"targets.typecheck.metadata.help": [
"apps/server/tsconfig.json",
"@nx/js/typescript"
],
"targets.typecheck.metadata.help.command": [
"apps/server/tsconfig.json",
"@nx/js/typescript"
],
"targets.typecheck.metadata.help.example": [
"apps/server/tsconfig.json",
"@nx/js/typescript"
],
"targets.lint": [
"apps/server/eslint.config.mjs",
"@nx/eslint/plugin"
],
"targets.lint.cache": [
"apps/server/eslint.config.mjs",
"@nx/eslint/plugin"
],
"targets.lint.options": [
"apps/server/eslint.config.mjs",
"@nx/eslint/plugin"
],
"targets.lint.inputs": [
"apps/server/eslint.config.mjs",
"@nx/eslint/plugin"
],
"targets.lint.outputs": [
"apps/server/eslint.config.mjs",
"@nx/eslint/plugin"
],
"targets.lint.metadata": [
"apps/server/eslint.config.mjs",
"@nx/eslint/plugin"
],
"targets.lint.executor": [
"apps/server/eslint.config.mjs",
"@nx/eslint/plugin"
],
"targets.lint.options.cwd": [
"apps/server/eslint.config.mjs",
"@nx/eslint/plugin"
],
"targets.lint.options.command": [
"apps/server/eslint.config.mjs",
"@nx/eslint/plugin"
],
"targets.lint.metadata.technologies": [
"apps/server/eslint.config.mjs",
"@nx/eslint/plugin"
],
"targets.lint.metadata.technologies.0": [
"apps/server/eslint.config.mjs",
"@nx/eslint/plugin"
],
"targets.lint.metadata.description": [
"apps/server/eslint.config.mjs",
"@nx/eslint/plugin"
],
"targets.lint.metadata.help": [
"apps/server/eslint.config.mjs",
"@nx/eslint/plugin"
],
"targets.lint.metadata.help.command": [
"apps/server/eslint.config.mjs",
"@nx/eslint/plugin"
],
"targets.lint.metadata.help.example": [
"apps/server/eslint.config.mjs",
"@nx/eslint/plugin"
],
"targets.build": [
"apps/server/webpack.config.cjs",
"@nx/webpack/plugin"
],
"targets.build.options": [
"apps/server/webpack.config.cjs",
"@nx/webpack/plugin"
],
"targets.build.cache": [
"apps/server/webpack.config.cjs",
"@nx/webpack/plugin"
],
"targets.build.dependsOn": [
"apps/server/webpack.config.cjs",
"@nx/webpack/plugin"
],
"targets.build.inputs": [
"apps/server/webpack.config.cjs",
"@nx/webpack/plugin"
],
"targets.build.outputs": [
"apps/server/webpack.config.cjs",
"@nx/webpack/plugin"
],
"targets.build.metadata": [
"apps/server/webpack.config.cjs",
"@nx/webpack/plugin"
],
"targets.build.syncGenerators": [
"apps/server/webpack.config.cjs",
"@nx/webpack/plugin"
],
"targets.build.executor": [
"apps/server/webpack.config.cjs",
"@nx/webpack/plugin"
],
"targets.build.options.cwd": [
"apps/server/webpack.config.cjs",
"@nx/webpack/plugin"
],
"targets.build.options.args": [
"apps/server/webpack.config.cjs",
"@nx/webpack/plugin"
],
"targets.build.options.command": [
"apps/server/webpack.config.cjs",
"@nx/webpack/plugin"
],
"targets.build.metadata.technologies": [
"apps/server/webpack.config.cjs",
"@nx/webpack/plugin"
],
"targets.build.metadata.technologies.0": [
"apps/server/webpack.config.cjs",
"@nx/webpack/plugin"
],
"targets.build.metadata.description": [
"apps/server/webpack.config.cjs",
"@nx/webpack/plugin"
],
"targets.build.metadata.help": [
"apps/server/webpack.config.cjs",
"@nx/webpack/plugin"
],
"targets.build.metadata.help.command": [
"apps/server/webpack.config.cjs",
"@nx/webpack/plugin"
],
"targets.build.metadata.help.example": [
"apps/server/webpack.config.cjs",
"@nx/webpack/plugin"
],
"targets.preview": [
"apps/server/webpack.config.cjs",
"@nx/webpack/plugin"
],
"targets.preview.options": [
"apps/server/webpack.config.cjs",
"@nx/webpack/plugin"
],
"targets.preview.metadata": [
"apps/server/webpack.config.cjs",
"@nx/webpack/plugin"
],
"targets.preview.syncGenerators": [
"apps/server/webpack.config.cjs",
"@nx/webpack/plugin"
],
"targets.preview.executor": [
"apps/server/webpack.config.cjs",
"@nx/webpack/plugin"
],
"targets.preview.options.cwd": [
"apps/server/webpack.config.cjs",
"@nx/webpack/plugin"
],
"targets.preview.options.args": [
"apps/server/webpack.config.cjs",
"@nx/webpack/plugin"
],
"targets.preview.options.command": [
"apps/server/webpack.config.cjs",
"@nx/webpack/plugin"
],
"targets.preview.metadata.technologies": [
"apps/server/webpack.config.cjs",
"@nx/webpack/plugin"
],
"targets.preview.metadata.technologies.0": [
"apps/server/webpack.config.cjs",
"@nx/webpack/plugin"
],
"targets.preview.metadata.description": [
"apps/server/webpack.config.cjs",
"@nx/webpack/plugin"
],
"targets.preview.metadata.help": [
"apps/server/webpack.config.cjs",
"@nx/webpack/plugin"
],
"targets.preview.metadata.help.command": [
"apps/server/webpack.config.cjs",
"@nx/webpack/plugin"
],
"targets.preview.metadata.help.example": [
"apps/server/webpack.config.cjs",
"@nx/webpack/plugin"
],
"targets.build-deps": [
"apps/server/webpack.config.cjs",
"@nx/webpack/plugin"
],
"targets.build-deps.dependsOn": [
"apps/server/webpack.config.cjs",
"@nx/webpack/plugin"
],
"targets.watch-deps": [
"apps/server/webpack.config.cjs",
"@nx/webpack/plugin"
],
"targets.watch-deps.dependsOn": [
"apps/server/webpack.config.cjs",
"@nx/webpack/plugin"
],
"targets.watch-deps.executor": [
"apps/server/webpack.config.cjs",
"@nx/webpack/plugin"
],
"targets.watch-deps.options": [
"apps/server/webpack.config.cjs",
"@nx/webpack/plugin"
],
"targets.watch-deps.options.command": [
"apps/server/webpack.config.cjs",
"@nx/webpack/plugin"
],
"name": [
"apps/server/package.json",
"nx/core/package-json"
],
"tags": [
"apps/server/package.json",
"nx/core/package-json"
],
"tags.npm:private": [
"apps/server/package.json",
"nx/core/package-json"
],
"metadata.targetGroups": [
"apps/server/package.json",
"nx/core/package-json"
],
"metadata.js": [
"apps/server/package.json",
"nx/core/package-json"
],
"metadata.js.packageName": [
"apps/server/package.json",
"nx/core/package-json"
],
"metadata.js.isInPackageManagerWorkspaces": [
"apps/server/package.json",
"nx/core/package-json"
],
"targets.serve": [
"apps/server/package.json",
"nx/core/package-json"
],
"targets.serve.executor": [
"apps/server/package.json",
"nx/core/package-json"
],
"targets.serve.defaultConfiguration": [
"apps/server/package.json",
"nx/core/package-json"
],
"targets.serve.dependsOn": [
"apps/server/package.json",
"nx/core/package-json"
],
"targets.serve.options": [
"apps/server/package.json",
"nx/core/package-json"
],
"targets.serve.configurations": [
"apps/server/package.json",
"nx/core/package-json"
],
"targets.serve.options.buildTarget": [
"apps/server/package.json",
"nx/core/package-json"
],
"targets.serve.options.runBuildTargetDependencies": [
"apps/server/package.json",
"nx/core/package-json"
],
"targets.serve.configurations.development": [
"apps/server/package.json",
"nx/core/package-json"
],
"targets.serve.configurations.development.buildTarget": [
"apps/server/package.json",
"nx/core/package-json"
],
"targets.serve.configurations.production": [
"apps/server/package.json",
"nx/core/package-json"
],
"targets.serve.configurations.production.buildTarget": [
"apps/server/package.json",
"nx/core/package-json"
]
},
"packages/commons": { "packages/commons": {
"root": [ "root": [
"packages/commons/package.json", "packages/commons/package.json",

File diff suppressed because one or more lines are too long

View File

@ -1 +1 @@
{"version":1,"data":{"_regroup/tsconfig.json":{"data":{"options":{},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"4035316250107280252"},"_regroup/tsconfig.webpack.json":{"data":{"options":{"outDir":"_regroup/build"},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"6907118777807948892"},"_regroup_monorepo/apps/client/tsconfig.json":{"data":{"options":{},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"14767859997928425739"},"_regroup_monorepo/apps/desktop/tsconfig.json":{"data":{"options":{"outDir":"_regroup_monorepo/apps/desktop/build/src"},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"13836985792475651782"},"_regroup_monorepo/apps/dump-db/tsconfig.json":{"data":{"options":{},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"13443438839210231598"},"_regroup_monorepo/apps/edit-docs/tsconfig.json":{"data":{"options":{"outDir":"_regroup_monorepo/apps/edit-docs/build/src"},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"12225141163520618803"},"_regroup_monorepo/apps/server/tsconfig.json":{"data":{"options":{"outDir":"_regroup_monorepo/apps/server/build"},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"845305129518775256"},"_regroup_monorepo/packages/commons/tsconfig.json":{"data":{"options":{"outDir":"_regroup_monorepo/packages/commons/build"},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"6514291953471485556"},"tsconfig.base.json":{"data":{"options":{},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"8900268571896142108"},"tsconfig.json":{"data":{"options":{},"raw":{"nx":{}},"extendedConfigFiles":[{"filePath":"tsconfig.base.json"}],"projectReferences":[{"path":"packages/commons","originalPath":"./packages/commons"},{"path":"packages/turndown-plugin-gfm","originalPath":"./packages/turndown-plugin-gfm"}]},"extendedFilesHash":"8900268571896142108|","hash":"8784381935299652134"},"packages/commons/tsconfig.json":{"data":{"options":{},"raw":{"nx":{}},"extendedConfigFiles":[{"filePath":"tsconfig.base.json"}],"projectReferences":[{"path":"packages/commons/tsconfig.lib.json","originalPath":"./tsconfig.lib.json"},{"path":"packages/commons/tsconfig.spec.json","originalPath":"./tsconfig.spec.json"}]},"extendedFilesHash":"8900268571896142108|","hash":"12834038490315927699"},"packages/commons/tsconfig.lib.json":{"data":{"options":{"rootDir":"packages/commons/src","outDir":"packages/commons/dist","tsBuildInfoFile":"packages/commons/dist/tsconfig.lib.tsbuildinfo"},"raw":{"nx":{}},"extendedConfigFiles":[{"filePath":"tsconfig.base.json"}]},"extendedFilesHash":"8900268571896142108|","hash":"6071029124077261918"},"packages/commons/tsconfig.spec.json":{"data":{"options":{"outDir":"packages/commons/out-tsc/vitest"},"raw":{"nx":{}},"extendedConfigFiles":[{"filePath":"tsconfig.base.json"}],"projectReferences":[{"path":"packages/commons/tsconfig.lib.json","originalPath":"./tsconfig.lib.json"}]},"extendedFilesHash":"8900268571896142108|","hash":"12757693314151657395"},"packages/turndown-plugin-gfm/tsconfig.json":{"data":{"options":{},"raw":{"nx":{}},"extendedConfigFiles":[{"filePath":"tsconfig.base.json"}],"projectReferences":[{"path":"packages/turndown-plugin-gfm/tsconfig.lib.json","originalPath":"./tsconfig.lib.json"}]},"extendedFilesHash":"8900268571896142108|","hash":"15856989918287211863"},"packages/turndown-plugin-gfm/tsconfig.lib.json":{"data":{"options":{"rootDir":"packages/turndown-plugin-gfm/src","outDir":"packages/turndown-plugin-gfm/dist","tsBuildInfoFile":"packages/turndown-plugin-gfm/dist/tsconfig.lib.tsbuildinfo"},"raw":{"nx":{}},"extendedConfigFiles":[{"filePath":"tsconfig.base.json"}]},"extendedFilesHash":"8900268571896142108|","hash":"3418659308031652674"}}} {"version":1,"data":{"_regroup/tsconfig.json":{"data":{"options":{},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"4035316250107280252"},"_regroup/tsconfig.webpack.json":{"data":{"options":{"outDir":"_regroup/build"},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"6907118777807948892"},"_regroup_monorepo/apps/client/tsconfig.json":{"data":{"options":{},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"14767859997928425739"},"_regroup_monorepo/apps/desktop/tsconfig.json":{"data":{"options":{"outDir":"_regroup_monorepo/apps/desktop/build/src"},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"13836985792475651782"},"_regroup_monorepo/apps/dump-db/tsconfig.json":{"data":{"options":{},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"13443438839210231598"},"_regroup_monorepo/apps/edit-docs/tsconfig.json":{"data":{"options":{"outDir":"_regroup_monorepo/apps/edit-docs/build/src"},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"12225141163520618803"},"_regroup_monorepo/apps/server/tsconfig.json":{"data":{"options":{"outDir":"_regroup_monorepo/apps/server/build"},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"845305129518775256"},"_regroup_monorepo/packages/commons/tsconfig.json":{"data":{"options":{"outDir":"_regroup_monorepo/packages/commons/build"},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"6514291953471485556"},"tsconfig.base.json":{"data":{"options":{},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"8900268571896142108"},"tsconfig.json":{"data":{"options":{},"raw":{"nx":{}},"extendedConfigFiles":[{"filePath":"tsconfig.base.json"}],"projectReferences":[{"path":"packages/commons","originalPath":"./packages/commons"},{"path":"packages/turndown-plugin-gfm","originalPath":"./packages/turndown-plugin-gfm"},{"path":"apps/server","originalPath":"./apps/server"}]},"extendedFilesHash":"8900268571896142108|","hash":"16310354267596464911"},"packages/commons/tsconfig.json":{"data":{"options":{},"raw":{"nx":{}},"extendedConfigFiles":[{"filePath":"tsconfig.base.json"}],"projectReferences":[{"path":"packages/commons/tsconfig.lib.json","originalPath":"./tsconfig.lib.json"},{"path":"packages/commons/tsconfig.spec.json","originalPath":"./tsconfig.spec.json"}]},"extendedFilesHash":"8900268571896142108|","hash":"12834038490315927699"},"packages/commons/tsconfig.lib.json":{"data":{"options":{"rootDir":"packages/commons/src","outDir":"packages/commons/dist","tsBuildInfoFile":"packages/commons/dist/tsconfig.lib.tsbuildinfo"},"raw":{"nx":{}},"extendedConfigFiles":[{"filePath":"tsconfig.base.json"}]},"extendedFilesHash":"8900268571896142108|","hash":"6071029124077261918"},"packages/commons/tsconfig.spec.json":{"data":{"options":{"outDir":"packages/commons/out-tsc/vitest"},"raw":{"nx":{}},"extendedConfigFiles":[{"filePath":"tsconfig.base.json"}],"projectReferences":[{"path":"packages/commons/tsconfig.lib.json","originalPath":"./tsconfig.lib.json"}]},"extendedFilesHash":"8900268571896142108|","hash":"12757693314151657395"},"packages/turndown-plugin-gfm/tsconfig.json":{"data":{"options":{},"raw":{"nx":{}},"extendedConfigFiles":[{"filePath":"tsconfig.base.json"}],"projectReferences":[{"path":"packages/turndown-plugin-gfm/tsconfig.lib.json","originalPath":"./tsconfig.lib.json"}]},"extendedFilesHash":"8900268571896142108|","hash":"15856989918287211863"},"packages/turndown-plugin-gfm/tsconfig.lib.json":{"data":{"options":{"rootDir":"packages/turndown-plugin-gfm/src","outDir":"packages/turndown-plugin-gfm/dist","tsBuildInfoFile":"packages/turndown-plugin-gfm/dist/tsconfig.lib.tsbuildinfo"},"raw":{"nx":{}},"extendedConfigFiles":[{"filePath":"tsconfig.base.json"}]},"extendedFilesHash":"8900268571896142108|","hash":"3418659308031652674"},"apps/server/tsconfig.app.json":{"data":{"options":{"rootDir":"apps/server/src","outDir":"apps/server/dist","tsBuildInfoFile":"apps/server/dist/tsconfig.app.tsbuildinfo"},"raw":{"nx":{}},"extendedConfigFiles":[{"filePath":"tsconfig.base.json"}],"projectReferences":[{"path":"packages/turndown-plugin-gfm/tsconfig.lib.json","originalPath":"../../packages/turndown-plugin-gfm/tsconfig.lib.json"},{"path":"packages/commons/tsconfig.lib.json","originalPath":"../../packages/commons/tsconfig.lib.json"}]},"extendedFilesHash":"8900268571896142108|","hash":"3694477791020167376"},"apps/server/tsconfig.json":{"data":{"options":{},"raw":{"nx":{}},"extendedConfigFiles":[{"filePath":"tsconfig.base.json"}],"projectReferences":[{"path":"packages/turndown-plugin-gfm","originalPath":"../../packages/turndown-plugin-gfm"},{"path":"packages/commons","originalPath":"../../packages/commons"},{"path":"apps/server/tsconfig.app.json","originalPath":"./tsconfig.app.json"}]},"extendedFilesHash":"8900268571896142108|","hash":"5761948780426366458"}}}

View File

@ -538,5 +538,275 @@
}, },
"metadata": {}, "metadata": {},
"projectType": "application" "projectType": "application"
},
"430956368856284591packages/commons/vite.config.ts": {
"targets": {
"test": {
"command": "vitest",
"options": {
"cwd": "packages/commons"
},
"cache": true,
"inputs": [
"default",
"^production",
{
"externalDependencies": [
"vitest"
]
},
{
"env": "CI"
}
],
"outputs": [
"{projectRoot}/test-output/vitest/coverage"
],
"metadata": {
"technologies": [
"vite"
],
"description": "Run Vite tests",
"help": {
"command": "npx vitest --help",
"example": {
"options": {
"bail": 1,
"coverage": true
}
}
}
}
},
"typecheck": {
"cache": true,
"inputs": [
"production",
"^production",
{
"externalDependencies": [
"typescript"
]
}
],
"command": "tsc --build --emitDeclarationOnly",
"options": {
"cwd": "packages/commons"
},
"metadata": {
"description": "Runs type-checking for the project.",
"technologies": [
"typescript"
],
"help": {
"command": "npx tsc --build --help",
"example": {
"args": [
"--force"
]
}
}
},
"dependsOn": [
"^typecheck"
],
"syncGenerators": [
"@nx/js:typescript-sync"
]
},
"build-deps": {
"dependsOn": [
"^build"
]
},
"watch-deps": {
"dependsOn": [
"build-deps"
],
"command": "npx nx watch --projects @triliumnext/commons --includeDependentProjects -- npx nx build-deps @triliumnext/commons"
}
},
"metadata": {},
"projectType": "application"
},
"2565236826186505184packages/commons/vite.config.ts": {
"targets": {
"test": {
"command": "vitest",
"options": {
"cwd": "packages/commons"
},
"cache": true,
"inputs": [
"default",
"^production",
{
"externalDependencies": [
"vitest"
]
},
{
"env": "CI"
}
],
"outputs": [
"{projectRoot}/test-output/vitest/coverage"
],
"metadata": {
"technologies": [
"vite"
],
"description": "Run Vite tests",
"help": {
"command": "npx vitest --help",
"example": {
"options": {
"bail": 1,
"coverage": true
}
}
}
}
},
"typecheck": {
"cache": true,
"inputs": [
"production",
"^production",
{
"externalDependencies": [
"typescript"
]
}
],
"command": "tsc --build --emitDeclarationOnly",
"options": {
"cwd": "packages/commons"
},
"metadata": {
"description": "Runs type-checking for the project.",
"technologies": [
"typescript"
],
"help": {
"command": "npx tsc --build --help",
"example": {
"args": [
"--force"
]
}
}
},
"dependsOn": [
"^typecheck"
],
"syncGenerators": [
"@nx/js:typescript-sync"
]
},
"build-deps": {
"dependsOn": [
"^build"
]
},
"watch-deps": {
"dependsOn": [
"build-deps"
],
"command": "npx nx watch --projects @triliumnext/commons --includeDependentProjects -- npx nx build-deps @triliumnext/commons"
}
},
"metadata": {},
"projectType": "application"
},
"17978826188511034385packages/commons/vite.config.ts": {
"targets": {
"test": {
"command": "vitest",
"options": {
"cwd": "packages/commons"
},
"cache": true,
"inputs": [
"default",
"^production",
{
"externalDependencies": [
"vitest"
]
},
{
"env": "CI"
}
],
"outputs": [
"{projectRoot}/test-output/vitest/coverage"
],
"metadata": {
"technologies": [
"vite"
],
"description": "Run Vite tests",
"help": {
"command": "npx vitest --help",
"example": {
"options": {
"bail": 1,
"coverage": true
}
}
}
}
},
"typecheck": {
"cache": true,
"inputs": [
"production",
"^production",
{
"externalDependencies": [
"typescript"
]
}
],
"command": "tsc --build --emitDeclarationOnly",
"options": {
"cwd": "packages/commons"
},
"metadata": {
"description": "Runs type-checking for the project.",
"technologies": [
"typescript"
],
"help": {
"command": "npx tsc --build --help",
"example": {
"args": [
"--force"
]
}
}
},
"dependsOn": [
"^typecheck"
],
"syncGenerators": [
"@nx/js:typescript-sync"
]
},
"build-deps": {
"dependsOn": [
"^build"
]
},
"watch-deps": {
"dependsOn": [
"build-deps"
],
"command": "npx nx watch --projects @triliumnext/commons --includeDependentProjects -- npx nx build-deps @triliumnext/commons"
}
},
"metadata": {},
"projectType": "application"
} }
} }

View File

@ -0,0 +1,266 @@
{
"4292219826307574011": {
"targets": {
"build": {
"command": "webpack-cli build",
"options": {
"cwd": "apps/server",
"args": [
"--node-env=production"
]
},
"cache": true,
"dependsOn": [
"^build"
],
"inputs": [
"production",
"^production",
{
"externalDependencies": [
"webpack-cli"
]
}
],
"outputs": [
"{workspaceRoot}/apps/server/dist"
],
"metadata": {
"technologies": [
"webpack"
],
"description": "Runs Webpack build",
"help": {
"command": "npx webpack-cli build --help",
"example": {
"options": {
"json": "stats.json"
},
"args": [
"--profile"
]
}
}
},
"syncGenerators": [
"@nx/js:typescript-sync"
]
},
"serve": {
"command": "webpack-cli serve",
"options": {
"cwd": "apps/server",
"args": [
"--node-env=development"
]
},
"metadata": {
"technologies": [
"webpack"
],
"description": "Starts Webpack dev server",
"help": {
"command": "npx webpack-cli serve --help",
"example": {
"options": {
"args": [
"--client-progress",
"--history-api-fallback "
]
}
}
}
},
"syncGenerators": [
"@nx/js:typescript-sync"
]
},
"preview": {
"command": "webpack-cli serve",
"options": {
"cwd": "apps/server",
"args": [
"--node-env=production"
]
},
"metadata": {
"technologies": [
"webpack"
],
"description": "Starts Webpack dev server in production mode",
"help": {
"command": "npx webpack-cli serve --help",
"example": {
"options": {
"args": [
"--client-progress",
"--history-api-fallback "
]
}
}
}
},
"syncGenerators": [
"@nx/js:typescript-sync"
]
},
"serve-static": {
"dependsOn": [
"build"
],
"executor": "@nx/web:file-server",
"options": {
"buildTarget": "build",
"spa": true
},
"syncGenerators": [
"@nx/js:typescript-sync"
]
},
"build-deps": {
"dependsOn": [
"^build"
]
},
"watch-deps": {
"dependsOn": [
"build-deps"
],
"command": "npx nx watch --projects @triliumnext/server --includeDependentProjects -- npx nx build-deps @triliumnext/server"
}
},
"metadata": {}
},
"5623873423254742817": {
"targets": {
"build": {
"command": "webpack-cli build",
"options": {
"cwd": "apps/server",
"args": [
"--node-env=production"
]
},
"cache": true,
"dependsOn": [
"^build"
],
"inputs": [
"production",
"^production",
{
"externalDependencies": [
"webpack-cli"
]
}
],
"outputs": [
"{workspaceRoot}/apps/server/dist"
],
"metadata": {
"technologies": [
"webpack"
],
"description": "Runs Webpack build",
"help": {
"command": "npx webpack-cli build --help",
"example": {
"options": {
"json": "stats.json"
},
"args": [
"--profile"
]
}
}
},
"syncGenerators": [
"@nx/js:typescript-sync"
]
},
"serve": {
"command": "webpack-cli serve",
"options": {
"cwd": "apps/server",
"args": [
"--node-env=development"
]
},
"metadata": {
"technologies": [
"webpack"
],
"description": "Starts Webpack dev server",
"help": {
"command": "npx webpack-cli serve --help",
"example": {
"options": {
"args": [
"--client-progress",
"--history-api-fallback "
]
}
}
}
},
"syncGenerators": [
"@nx/js:typescript-sync"
]
},
"preview": {
"command": "webpack-cli serve",
"options": {
"cwd": "apps/server",
"args": [
"--node-env=production"
]
},
"metadata": {
"technologies": [
"webpack"
],
"description": "Starts Webpack dev server in production mode",
"help": {
"command": "npx webpack-cli serve --help",
"example": {
"options": {
"args": [
"--client-progress",
"--history-api-fallback "
]
}
}
}
},
"syncGenerators": [
"@nx/js:typescript-sync"
]
},
"serve-static": {
"dependsOn": [
"build"
],
"executor": "@nx/web:file-server",
"options": {
"buildTarget": "build",
"spa": true
},
"syncGenerators": [
"@nx/js:typescript-sync"
]
},
"build-deps": {
"dependsOn": [
"^build"
]
},
"watch-deps": {
"dependsOn": [
"build-deps"
],
"command": "npx nx watch --projects @triliumnext/server --includeDependentProjects -- npx nx build-deps @triliumnext/server"
}
},
"metadata": {}
}
}

View File

@ -16,5 +16,13 @@
"eslint.config.js", "eslint.config.js",
"eslint.config.cjs", "eslint.config.cjs",
"eslint.config.mjs" "eslint.config.mjs"
],
"references": [
{
"path": "../../packages/turndown-plugin-gfm/tsconfig.lib.json"
},
{
"path": "../../packages/commons/tsconfig.lib.json"
}
] ]
} }

View File

@ -3,6 +3,12 @@
"files": [], "files": [],
"include": [], "include": [],
"references": [ "references": [
{
"path": "../../packages/turndown-plugin-gfm"
},
{
"path": "../../packages/commons"
},
{ {
"path": "./tsconfig.app.json" "path": "./tsconfig.app.json"
} }

View File

@ -9,9 +9,6 @@
{ {
"path": "./packages/turndown-plugin-gfm" "path": "./packages/turndown-plugin-gfm"
}, },
{
"path": "./apps/server-e2e"
},
{ {
"path": "./apps/server" "path": "./apps/server"
} }