Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion native-src/placeholders_interface/Planceholders.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,9 @@ bool Placeholders::ConvertToPlaceholder(const std::wstring &fullPath, const std:
if (FAILED(hr))
{
// Manejar el error al convertir a marcador de posición
wprintf(L"[ConvertToPlaceholder] Error converting to placeholder, ConvertToPlaceholder failed with HRESULT 0x%X\n", hr);
if (hr != 0x8007017C) {
wprintf(L"[ConvertToPlaceholder] Error converting to placeholder, ConvertToPlaceholder failed with HRESULT 0x%X\n", hr);
}

// Puedes obtener información detallada sobre el error usando FormatMessage
LPVOID errorMsg;
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@
"scripts": {
"========== Testing ==========": "",
"test": "vitest",
"test:once": "yarn vitest --run",
"test:one": "yarn vitest related x",
"test:once": "npm run test -- --run",
"test:one": "npm run test -- related x",
"========== Build ==========": "",
"clean": "node-gyp clean",
"build:gyp": "node-gyp configure build",
"build:ts": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"config:gyp": "python gyp.config.py",
"build": "python gyp.config.py && node-gyp clean && node-gyp configure build && yarn build:ts",
"build": "python gyp.config.py && node-gyp clean && node-gyp configure build && npm run build:ts",
"========== Linter ==========": "",
"format": "prettier . --check",
"format:fix": "prettier . --write",
Expand Down