You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using ember 3.4.1, and I'm trying to use Yarn v1.10.1
The "[email protected] install script" is responsive and asks questions during installation, and this seems to be incompatible with how Yarn works.
during > yarn install
the semantic ui script tries to run, but seemingly fails:
Starting 'run setup'...
? Set-up Semantic UI (Use arrow keys)
❯ Automatic (Use default locations and all components)
Express (Set components and output folder)
Custom (Customize all src/dist values)
and then during the standard >ember serve
an error is thrown:
Build Error (Funnel)
Attempting to watch missing directory: node_modules/semantic-ui-css
{{{and then ember hangs - the port is open, but nothing is there}}}
in the error log:
Attempting to watch missing directory: node_modules/semantic-ui-css
errorType: Build Error
location:
column: [undefined]
file: [undefined]
line: [undefined]
treeDir: [undefined]
message: Build Canceled: Broccoli Builder ran into an error with Funnel plugin. 💥
Attempting to watch missing directory: node_modules/semantic-ui-css
name: Error
nodeAnnotation: Funnel
nodeName: Funnel
originalErrorMessage: Attempting to watch missing directory: node_modules/semantic-ui-css
stack: Error: Attempting to watch missing directory: node_modules/semantic-ui-css
Is it possible to make Semantic-UI compatible with the Yarn build process?
The text was updated successfully, but these errors were encountered:
Alright, I found a workaround for the error: ENOENT: no such file or directory, scandir...
The semantic.js file settings in my project root is not respected at build, and so the asset pathway and import defaults are ignored.
If I change the index.js file in /node_modules/semantic-ui-ember/ and set import:{images:false, fonts:false} a bad path is no longer sucked into the "funnel" and the build builds properly.
I'm using ember 3.4.1, and I'm trying to use Yarn v1.10.1
The "[email protected] install script" is responsive and asks questions during installation, and this seems to be incompatible with how Yarn works.
during
> yarn install
the semantic ui script tries to run, but seemingly fails:
and then during the standard
>ember serve
an error is thrown:
in the error log:
Is it possible to make Semantic-UI compatible with the Yarn build process?
The text was updated successfully, but these errors were encountered: