Tyler Shambora
Tyler Shambora
I ran into this same problem while trying to implement pub/sub in my theme. Two different threads for `theme.js` and `.js` were created and subscribers in one context couldn't listen...
For anyone who comes across this in search of an answer to whether or not it's possible to include subdirectories in top level theme directories (e.g. `snippets/` or `sections/`), I...
yan, I'm able to deploy to the live published theme using `yarn deploy`, however I'm using the more recent version after breaking changes were introduced to `slate.config.js` (beta.8 or 9...
hmmmmmm yah, something must have changed in one of the recent updates. Everything works for me running slate-tools v1.0.0-beta.9, but if I create a new slate project running slate-tools v1.0.0-beta.14...
@rustydev, I bet you could actually accomplish adding that flatten attribute via the slate config file instead of editing the module’s code, I’m just not sure how exactly. Maybe I’ll...
@RustyDev try updating the paths to this... ``` new CopyWebpackPlugin([ { from: 'snippets/**/*', to: '../snippets/', flatten: true }, { from: 'sections/**/*', to: '../sections/', flatten: true }, ]), ``` This will...
Idk if a pull request would get approved, but it’s worth a shot (especially since it’s such a tiny change codewise). The reasons I think a PR might be met...
after revisiting this briefly, I realized a quick and dirty workaround for this is to change the path for `src/snippets/` in `slate.config.js` to either an empty directory or snippet subdirectory...
did anybody figure this out? any workarounds? @Domitnator, @jonathantredway, mom, God...? Anybody?