Skip to content

Commit

Permalink
restructure of project
Browse files Browse the repository at this point in the history
  • Loading branch information
sagiegurari committed Jan 19, 2016
1 parent e7a4696 commit 73aba37
Show file tree
Hide file tree
Showing 23 changed files with 11 additions and 12 deletions.
3 changes: 2 additions & 1 deletion .bithoundrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"ignore": [
"test/**/*.js",
"build/**/*.js"
"project/**/*.js",
"example/**/*.js"
]
}
6 changes: 2 additions & 4 deletions .codeclimate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ ratings:
exclude_paths:
- test/**/*
- test/*
- build/**/*
- build/*
- project/**/*
- project/*
- example/**/*
- example/*
- docs/**/*
Expand All @@ -24,8 +24,6 @@ exclude_paths:
- README.md
- bower.json
- package.json
- eslintrc-common.json
- jshintrc-common.json
- .*.json
- .*.yml
- .*rc
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

var config = require('./eslintrc-common.json');
var config = require('./project/config/eslintrc-common.json');
config.env = {
browser: true
};
Expand Down
2 changes: 1 addition & 1 deletion .jshintrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"extends": "./jshintrc-common.json",
"extends": "./project/config/jshintrc-common.json",
"browser": true
}
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module.exports = function (grunt) {
buildDirectory: 'build'
},
config: {
src: 'build/*.js'
src: 'project/build/*.js'
}
};

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ See [contributing guide](docs/CONTRIBUTING.md)

| Date | Version | Description |
| ----------- | ------- | ----------- |
| 2016-01-18 | v0.0.54 | Maintenance |
| 2016-01-19 | v0.0.55 | Maintenance |
| 2015-09-26 | v0.0.31 | Update bower dependencies |
| 2015-09-26 | v0.0.30 | Added 'onClick' option to enable adding onclick event handler for the notification |
| 2015-09-02 | v0.0.29 | Maintenance |
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-web-notification",
"version": "0.0.54",
"version": "0.0.55",
"description": "AngularJS service for displaying web notifications.",
"authors": [
"Sagie Gur-Ari <sagiegurari@gmail.com>"
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion build/karma.js → project/build/karma.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module.exports.tasks = {
karma: {
full: {
configFile: 'karma.conf.js',
configFile: './project/config/karma.conf.js',
singleRun: true,
browsers: ['PhantomJS']
}
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion karma.conf.js → project/config/karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module.exports = function (config) {
'use strict';

config.set({
basePath: '.',
basePath: '../../',
frameworks: ['mocha', 'sinon-chai'],
files: [
'bower_components/jquery/dist/jquery.js',
Expand Down

0 comments on commit 73aba37

Please sign in to comment.