Skip to content
This repository has been archived by the owner on Jun 9, 2019. It is now read-only.

Commit

Permalink
Fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
mohayonao committed Dec 11, 2013
1 parent 9558bf0 commit c858ad1
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 10 deletions.
10 changes: 2 additions & 8 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,11 @@ module.exports = function(grunt) {
grunt.loadNpmTasks("grunt-contrib-jshint");
grunt.loadNpmTasks("grunt-contrib-uglify");
grunt.loadNpmTasks("grunt-contrib-clean");
grunt.loadNpmTasks("grunt-simple-mocha");
grunt.loadNpmTasks("grunt-contrib-watch");

grunt.initConfig({
simplemocha: {
options: { reporter: "dot" },
target: "test/*.js"
},
jshint: {
all: ["src/core.js", "src/**/*.js"],
all: ["src/core.js", "src/modules/*.js", "src/objects/*.js"],
options: {
curly : true,
eqeqeq : true,
Expand Down Expand Up @@ -76,7 +71,6 @@ module.exports = function(grunt) {

grunt.registerTask("gh-pages", ["clean", "uglify", "doc"]);

grunt.registerTask("default", ["jshint", "simplemocha"]);
grunt.registerTask("test", ["simplemocha"]);
grunt.registerTask("default", ["jshint"]);
grunt.registerTask("all", ["default", "build"]);
};
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
"grunt-contrib-uglify": "~0.1.1",
"grunt-contrib-jshint": "~0.2.0",
"grunt-contrib-clean": "~0.4.0",
"grunt-contrib-watch": "~0.2.0",
"grunt-simple-mocha": "~0.3.0"
"grunt-contrib-watch": "~0.2.0"
}
}
5 changes: 5 additions & 0 deletions src/objects/scope.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,11 @@
get: function() {
return this._.interval;
}
},
buffer: {
get: function() {
return this._.buffer;
}
}
});

Expand Down
5 changes: 5 additions & 0 deletions timbre.dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -10623,6 +10623,11 @@
get: function() {
return this._.interval;
}
},
buffer: {
get: function() {
return this._.buffer;
}
}
});

Expand Down

0 comments on commit c858ad1

Please sign in to comment.