-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
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
Feature add docker compose for dev #2
Feature add docker compose for dev #2
Conversation
}, | ||
"devDependencies": { | ||
"@babel/preset-react": "^7.0.0", | ||
"@osjs/dev-meta": "^1.0.3", | ||
"babel-eslint": "^10.1.0", | ||
"eslint": "^7.30.0", | ||
"eslint-plugin-react": "^7.24.0" | ||
"eslint-plugin-react": "^7.24.0", | ||
"webpack": "^4.46.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We normally don't add webpack
and webpack-cli
as a devDependency
of packages. They are already added in @osjs/dev-meta package
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It should be added. Because this project needs webpack
itself and it should not depend on webpack
installation based on another project.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for your PR. |
Hi,
In this PR, I have used
docker-compose
to make it easier to develop the package insideOSJS
. It also helps others to see a demo easily by running only one command.