Skip to content

Commit

Permalink
Merge pull request #17 from froots/bower-dependencies
Browse files Browse the repository at this point in the history
Remove included dependencies
  • Loading branch information
froots committed Nov 9, 2013
2 parents 7a14027 + ac2ceca commit cccb5c0
Show file tree
Hide file tree
Showing 14 changed files with 36 additions and 7,312 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1 +1,2 @@
node_modules
bower_components
3 changes: 2 additions & 1 deletion .travis.yml
Expand Up @@ -3,6 +3,7 @@ node_js:
- "0.10"
- "0.8"
before_script:
- npm install -g grunt-cli
- npm install -g grunt-cli bower
- bower install
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
11 changes: 6 additions & 5 deletions Gruntfile.js
@@ -1,11 +1,12 @@
'use strict';

module.exports = function(grunt) {

'use strict';

grunt.initConfig({
jasmine_node: {
forceExit: true,
isVerbose: true
isVerbose: false,
projectRoot: 'spec'
},

jshint: {
Expand All @@ -17,7 +18,7 @@ module.exports = function(grunt) {

karma: {
options: {
configFile: 'karma.conf.js'
configFile: 'karma.conf.coffee'
},
dev: {
reporters: 'dots'
Expand All @@ -30,7 +31,7 @@ module.exports = function(grunt) {
});

grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-karma-0.9.1');
grunt.loadNpmTasks('grunt-karma');
grunt.loadNpmTasks('grunt-jasmine-node');

grunt.registerTask('test', ['jshint', 'karma:ci', 'jasmine_node']);
Expand Down
8 changes: 6 additions & 2 deletions bower.json
@@ -1,10 +1,14 @@
{
"name": "jasmine-sinon",
"version": "0.2.0",
"version": "0.2.1",
"main": "lib/jasmine-sinon.js",
"ignore": [
"**/.*",
"node_modules",
"components"
]
],
"dependencies": {
"jasmine": "~1.3.1",
"sinonjs": "~1.7.1"
}
}
17 changes: 17 additions & 0 deletions karma.conf.coffee
@@ -0,0 +1,17 @@
module.exports = (config) ->
config.set
basePath: ''
frameworks: ['jasmine']
files: [
'bower_components/sinonjs/sinon.js'
'lib/jasmine-sinon.js'
'spec/*.spec.js'
]
reporters: ['progress']
runnerPort: 9100
browsers: ['Chrome', 'Firefox'],
plugins: [
'karma-jasmine'
'karma-chrome-launcher'
'karma-firefox-launcher'
]
79 changes: 0 additions & 79 deletions karma.conf.js

This file was deleted.

20 changes: 0 additions & 20 deletions lib/jasmine-1.1.0/MIT.LICENSE

This file was deleted.

190 changes: 0 additions & 190 deletions lib/jasmine-1.1.0/jasmine-html.js

This file was deleted.

0 comments on commit cccb5c0

Please sign in to comment.