Basically a clone of angular seed
We striped out things we don't use and added Grunt
npm install
Start the demo server with grunt demo
and go to http://localhost:8000/demo/.
You want to look at name, description, homepage, author, keywords, main and repository
├ bower.json
├ package.json
├ dist/
├ src/
├ tasks/
│ ├ files.js (source and sourceStyle)
├ tasks/options/ngtemplates.js
├ test/
├ demo/
│ ├ index.html
│ ├ app.js
├ test/
│ ├ e2e/
│ │ ├ env/
│ │ │ ├ index.html
│ │ │ ├ app.js
grunt
: Execute testsgrunt coverage
: Serve coverage report on port 7000grunt test
: Just testgrunt test:e2e
: Just test end to endgrunt test:unit
: Just test unitgrunt tdd
: Watch source and test files and run testsgrunt tdd:e2e
: Watch and test just end to endgrunt tdd:unit
: Watch and test just unitgrunt build
: Just buildgrunt release
: Test, build, bump patch version, commit, add version tag and push
test
tasks have a --browsers
option to specify the browsers you want to use
test
tasks have also a --reporters
option to specify the reporters you want to use
Browsers can also be set by the following environment-variables
PROTRACTOR_BROWSERS=Firefox,Chrome
KARMA_BROWSERS=Firefox,PhantomJS
Reporters can also be set by the following environment-variables
KARMA_REPORTERS=dots,osx
PROTRACTOR_REPORTERS=spec
See Gruntfile.js and tasks/options for all task details.
The MIT License
Copyright (c) 2014 Jimdo GmbH http://jimdo.com
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.