Skip to content

Commit 905f787

Browse files
committed
Bumped dependency versions and some performance improvements
- Bumped various deps - Add batching support in send() and time() to reduce DOM read/write cycles - Minor fixes in debugger UI to use RAF
1 parent 5486e28 commit 905f787

File tree

15 files changed

+7147
-1118
lines changed

15 files changed

+7147
-1118
lines changed

.npmrc

Lines changed: 0 additions & 1 deletion
This file was deleted.

Gruntfile.coffee

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -220,10 +220,11 @@ module.exports = (grunt) ->
220220
grunt.registerTask 'compile:ts-kagerou', CMP_KAGEROU_NAME
221221

222222
# Register our tasks
223-
grunt.registerTask 'test', ['coffee', 'jasmine:coverage']
224223
grunt.registerTask 'build', ['compile:ts-core', 'concat:dist_all', 'autoprefixer', 'cssmin', 'uglify:all']
225224
grunt.registerTask 'build:core', ['compile:ts-core', 'concat:dist_core', 'autoprefixer', 'cssmin', 'uglify:core']
226225
grunt.registerTask 'build:scripting', ['clean:scripting','concat:scripting_host', 'compile:ts-kagerou', 'copy:scripting_sandbox']
226+
227227
grunt.registerTask 'ci', ['build', 'coffee', 'jasmine:ci']
228+
grunt.registerTask 'test', ['coffee', 'jasmine:coverage']
228229

229-
grunt.registerTask 'default', ['clean', 'build', 'build:scripting', 'watch']
230+
grunt.registerTask 'default', ['clean', 'build', 'build:scripting']

0 commit comments

Comments
 (0)