Skip to content

Commit 2d6d338

Browse files
authored
V1.0.2 (#23)
* Fixes lodash plugin and favicon not found issues mentioned in #22 * Default application name changed * Adds Unit tests for all components * Path constants used in `Navbar` * `auth` used in place of `account` in `Navbar` * Travis config updated to include caching `node_modules`
2 parents a3afaab + ecb6d6c commit 2d6d338

File tree

96 files changed

+1019
-298
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+1019
-298
lines changed

.travis.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,24 @@ branches:
77
only:
88
- master
99

10-
script:
11-
- npm run test
10+
cache:
11+
bundler: true
12+
directories:
13+
- node_modules # NPM packages
14+
15+
notifications:
16+
email:
17+
on_failure: change
18+
on_success: change
1219

20+
script:
21+
- npm run test:cov
1322

1423
addons:
1524
code_climate:
1625
repo_token: $CODE_CLIMATE
1726

1827
after_success:
1928
- npm install -g codeclimate-test-reporter
20-
- codeclimate-test-reporter < coverage/*/lcov.info
29+
- codeclimate-test-reporter < coverage/lcov.info
2130
- npm run codecov

examples/react-firebase-redux/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -197,12 +197,12 @@ Build code before deployment by running `npm run build`. There are multiple opti
197197

198198
[npm-image]: https://img.shields.io/npm/v/react-firebase-redux.svg?style=flat-square
199199
[npm-url]: https://npmjs.org/package/react-firebase-redux
200-
[travis-image]: https://img.shields.io/travis/prescottprue/react-firebase-redux/master.svg?style=flat-square
201-
[travis-url]: https://travis-ci.org/prescottprue/react-firebase-redux
202-
[daviddm-image]: https://img.shields.io/david/prescottprue/react-firebase-redux.svg?style=flat-square
203-
[daviddm-url]: https://david-dm.org/prescottprue/react-firebase-redux
200+
[travis-image]: https://img.shields.io/travis/testuser/react-firebase-redux/master.svg?style=flat-square
201+
[travis-url]: https://travis-ci.org/testuser/react-firebase-redux
202+
[daviddm-image]: https://img.shields.io/david/testuser/react-firebase-redux.svg?style=flat-square
203+
[daviddm-url]: https://david-dm.org/testuser/react-firebase-redux
204204

205205
[license-image]: https://img.shields.io/npm/l/react-firebase-redux.svg?style=flat-square
206-
[license-url]: https://github.com/prescottprue/react-firebase-redux/blob/master/LICENSE
206+
[license-url]: https://github.com/testuser/react-firebase-redux/blob/master/LICENSE
207207
[code-style-image]: https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat-square
208208
[code-style-url]: http://standardjs.com/

examples/react-firebase-redux/build/deploy.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ const deployToFirebase = (cb) => {
3131
if (error !== null) {
3232
if (cb) {
3333
cb(error, null)
34-
console.log('error deploying', error)
3534
return
3635
}
3736
}

examples/react-firebase-redux/build/webpack.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ webpackConfig.plugins = [
5050
new HtmlWebpackPlugin({
5151
template : paths.client('index.html'),
5252
hash : false,
53-
favicon : paths.client('static/favicon.ico'),
53+
// favicon : paths.client('static/favicon.ico'), // for including single favicon
5454
filename : 'index.html',
5555
inject : 'body',
5656
minify : {
@@ -219,7 +219,7 @@ webpackConfig.module.loaders.push(
219219
// when we don't know the public path (we know it only when HMR is enabled [in development]) we
220220
// need to use the extractTextPlugin to fix this issue:
221221
// http://stackoverflow.com/questions/34133808/webpack-ots-parsing-error-loading-fonts/34133809#34133809
222-
if (!__DEV__) {
222+
if (!__DEV__ && !__TEST__) {
223223
debug('Apply ExtractTextPlugin to CSS loaders.')
224224
webpackConfig.module.loaders.filter((loader) =>
225225
loader.loaders && loader.loaders.find((name) => /css/.test(name.split('?')[0]))

examples/react-firebase-redux/dist/1.Login.33d24607f6387fbc29ee.js renamed to examples/react-firebase-redux/dist/1.Login.543b9eacffc9cfbb4dca.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/react-firebase-redux/dist/2.Projects.ef8495eff7d7c4903e38.js renamed to examples/react-firebase-redux/dist/2.Projects.43582f984ba4ec4be392.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/react-firebase-redux/dist/3.Signup.e873f98cdaa5d2cb6775.js renamed to examples/react-firebase-redux/dist/3.Signup.f7b49a237d04b6d99597.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/react-firebase-redux/dist/4.Account.9d4bb109d0fa397f7e84.js renamed to examples/react-firebase-redux/dist/4.Account.c25309e1f2e368025a14.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/react-firebase-redux/dist/5.5.f7846c442e3650cf6ec8.js renamed to examples/react-firebase-redux/dist/5.5.a236a0605faf1fee390a.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/react-firebase-redux/dist/7.Project.327095b3f3eb775feb29.js renamed to examples/react-firebase-redux/dist/7.Project.0bbabb77ad8716a772cc.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)