Raphael Batista Fontão

Results 7 comments of Raphael Batista Fontão

Hi @atanas-dev ! Thank you for your reply. I've tested creating a new WP Emerge theme directly withint web/app/themes just like a project without Bedrock (using ```composer create-project htmlburger/wpemerge-theme``` in...

> > Module build failed (from ./node_modules/babel-loader/lib/index.js): > > Error: Cannot find package '@babel/plugin-proposal-object-rest-spread' > > you haven't finished installing. `rm -rf node_modules` and rerun `npm install` Tried this over...

I'm ignoring the warnings. The problem is these errors that causes the build to fail. I've tested both latest LTS (20) and 16 (as you said), but, with both, I'm...

Finally I managed to build the project. - No needed to install windows-build-tools - Used Node 16.20.2 (through NVM for Windows) - First, I've cloned the repo, again. - After...

A possible workaround for that problem is to manually set the constant **before** calling ```Carbon_Fields::boot()```. ```php add_action("after_setup_theme", "BootCarbonFields"); function BootCarbonFields() { define("Carbon_Fields\URL", get_template_directory_uri()."/vendor/htmlburger/carbon-fields/"); Carbon_Fields::boot(); } ```

Also having this problem. Did you found a solution? In my case, I'm facing the same exception, but when running the code (not downloading model). ```