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
Should find a way to be able to run webpack 3 also. Maybe there is a way to leverage yarn aliases.
The text was updated successfully, but these errors were encountered:
You can install another version of webpack like this.
yarn add webpack3@npm:webpack
since this process changes the symbolic link of ./node_modules/.bin/webpack, I tried to change it directly. and made another symbolic link like this.
./node_modules/.bin/webpack
lrwxr-xr-x 1 rinae staff 25B Dec 21 14:03 webpack -> ../webpack/bin/webpack.js lrwxr-xr-x 1 rinae staff 29B Dec 21 14:02 webpack-cli -> ../webpack-cli/bin/webpack.js lrwxr-xr-x 1 rinae staff 26B Dec 21 14:02 webpack3 -> ../webpack3/bin/webpack.js
The problem is that webpack-cli always refer to webpack which is version 4.0.0-alpha1. so I couldn't bundle it using webpack3.
webpack-cli
webpack
Perhaps you should create a monorepo for different kinds of benchmark.
Sorry, something went wrong.
No branches or pull requests
Should find a way to be able to run webpack 3 also. Maybe there is a way to leverage yarn aliases.
The text was updated successfully, but these errors were encountered: