We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The problem occurred when @onurozkan wanted to build an editor on Windows (https://github.com/ckeditor/ckeditor5-build-classic/issues/26).
The build does not work on Windows because regexp used in replaceTCalls() function works on Unix systems only.
replaceTCalls()
https://github.com/ckeditor/ckeditor5-dev/blob/b6c059b6d8b6b840cdbd85b703564ca7521fe811/packages/ckeditor5-dev-webpack-plugin/lib/replacetcalls.js#L29
We should detect which separator path should be used: / for Unix, \ for Windows.
/
\
I remember we did it a few months ago when we were introducing Karma.
The text was updated successfully, but these errors were encountered:
Merge pull request #299 from ckeditor/t/297
7e61a1f
Fix: Fixed paths in webpack-plugin for Windows environment. Closes #297.
pomek
ma2ciek
No branches or pull requests
The problem occurred when @onurozkan wanted to build an editor on Windows (https://github.com/ckeditor/ckeditor5-build-classic/issues/26).
The build does not work on Windows because regexp used in
replaceTCalls()
function works on Unix systems only.https://github.com/ckeditor/ckeditor5-dev/blob/b6c059b6d8b6b840cdbd85b703564ca7521fe811/packages/ckeditor5-dev-webpack-plugin/lib/replacetcalls.js#L29
We should detect which separator path should be used:
/
for Unix,\
for Windows.I remember we did it a few months ago when we were introducing Karma.
The text was updated successfully, but these errors were encountered: