Merge pull request #2 from d4goxn/master

Minor cleanup for Linux based dev environments
This commit is contained in:
Christian Alfoni
2014-10-24 16:51:29 +02:00
15 changed files with 4 additions and 4 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
node_modules

5
README.md Executable file → Normal file
View File

@@ -21,9 +21,8 @@ flux-react extension to React JS. Read more about FLUX over at [Facebook Flux](h
### Run all tests with Karma
* Run `npm test`
Karma will launch Chrome and run the tests once. If you need to run tests on a server with
PhantomJS, either change `karma.conf.js` to use PhantomJS or manually start it with:
`./node_modules/karma/bin/karma start --single-run --browsers PhantomJS`
Karma will launch PhantomJS and run the tests once. If you need to run tests in a GUI browser, either change `karma.conf.js` to use Chrome or Firefox, or manually start it with:
`./node_modules/karma/bin/karma start --single-run --browsers Chrome`
### Minify the code, ready for production
* Run `gulp deploy`

0
app/.DS_Store vendored Executable file → Normal file
View File

0
app/App.js Executable file → Normal file
View File

0
app/main.js Executable file → Normal file
View File

0
dev/main.js Executable file → Normal file
View File

0
dev/test.js Executable file → Normal file
View File

0
gulpfile.js Executable file → Normal file
View File

2
karma.conf.js Executable file → Normal file
View File

@@ -63,7 +63,7 @@ module.exports = function(config) {
// start these browsers
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
//browsers: ['Chrome', 'Firefox', 'PhantomJS'],
browsers: ['Chrome'],
browsers: ['PhantomJS'],
// Continuous Integration mode

0
package.json Executable file → Normal file
View File

0
test.html Executable file → Normal file
View File

0
tests/App-test.js Executable file → Normal file
View File

0
utils/browserify.js Executable file → Normal file
View File

0
utils/es5-shim.js Executable file → Normal file
View File

0
utils/handleError.js Executable file → Normal file
View File