-
Notifications
You must be signed in to change notification settings - Fork 2
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
Chore/fix dependency issues #22
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Typo sever->server
- move `.babelrc` config to `package.json` - enable `babel-loader` cache - add [`resolve.root`](https://webpack.github.io/docs/configuration.html#resolve-root) option - add [`context`](https://webpack.github.io/docs/configuration.html#context) to common config - add `target` to client's config for consistency - reorder options in accordance with [configuration docs](https://webpack.github.io/docs/configuration.html) - update file formatting - add more comments
Use babel-preset-node5 for npm scripts
- Use `[chunkhash]` instead of `[hash]` in the names of bundles, it allows to save the bundle name if the content hasn't changed - Deduplicate assets, use the same `output.path` for files, fix #362 - Use `path.resolve` everywhere in webpack config for consistency - Use `OccurrenceOrderPlugin` in debug mode too for [hot reload needs](https://github.com/glenjamin/webpack-hot-middleware#installation--usage) - Move generated (compiled) files from `public` to `public/assets` to not be mixed with other files like static html
- .eslintrc -> package.json/eslintConfig ([ref](http://eslint.org/docs/user-guide/configuring#configuration-file-formats)) - .jscsrc -> package.json/jscsConfig ([ref](http://jscs.info/overview#-config-c)) - .babelrc -> package.json/babel ([ref](https://babeljs.io/docs/usage/babelrc/#use-via-package-json))
Improve long term caching by adding [chunkhash]
See [stylelint](https://github.com/stylelint/stylelint) and [stylelint-config-standard](https://github.com/stylelint/stylelint-config-standard) - Update styles with new validation rules - Remove unused `TextBox` component
Replace csscomb with stylelint
Add stylelint info to editor config doc
This file has been removed in #484
Remove preprocessor.js from readme
[AWS][EC2] Error: Cannot find module 'core-js/library/fn/get-iterator #505
fix(test): add core-js to unmockedModulePathPatterns
…ge for smaller media query
Update tools/copy.js to clean up package.json before copying
…e" feature is enabled Autoreload functionality is not picking up file changes when Webstorm "safe write" feature is enabled
Update tools/run.js to print options if present
Remove redundant commas in SQL statement
Move .eslintrc and .jscsrc in package.json to simplify directory layout
* dev-deps: jest, jscodeshift, jest-codemods * jest configuration * Example jest test * Remove mocha and istanbul in favour of jest
* chore: update packages * chore: upgrade jest-codemods, update others * chore: upgrade query-string, updade others * chore: upgrade packages, including eslint
The build breaking here is expected and will be fixed on a branch dedicated to fixing the lint errors |
please run |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This is an update to the core dependency, that is the React Starter Kit, and the resolving of some other dependencies. Running the tests now works locally, but there are quite a few lint issues that need to be fixed