dev #9

Merged
roman merged 27 commits from dev into master 2024-01-06 16:16:41 +00:00
Showing only changes of commit a6decb9cfb - Show all commits
+2 -1
View File
@@ -317,7 +317,8 @@ export async function syncFilesWithCloud(jsonBlockPath, bs, sourceFiles = false)
const args = sourceFiles ? '--source' : '';
const createBlockModulePath = `./node_modules/@axe-web/create-block`;
exec(`BLOCK_NAME=${blockName} node ${createBlockModulePath}/create-block.js sync ${args}`, (err, stdout, stderr) => {
// exec(`BLOCK_NAME=${blockName} node ${createBlockModulePath}/create-block.js sync ${args}`, (err, stdout, stderr) => {
exec(`node ${createBlockModulePath}/create-block.js sync ${args}`, (err, stdout, stderr) => {
if (err || stderr) {
const message = err || stderr;
console.error('Error:', message);