Skip to content

Commit

Permalink
Bumped dependency versions and some performance improvements
Browse files Browse the repository at this point in the history
- Bumped various deps
- Add batching support in send() and time() to reduce DOM read/write cycles
- Minor fixes in debugger UI to use RAF
  • Loading branch information
jabbany committed May 23, 2019
1 parent 5486e28 commit 905f787
Show file tree
Hide file tree
Showing 15 changed files with 7,147 additions and 1,118 deletions.
1 change: 0 additions & 1 deletion .npmrc

This file was deleted.

5 changes: 3 additions & 2 deletions Gruntfile.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -220,10 +220,11 @@ module.exports = (grunt) ->
grunt.registerTask 'compile:ts-kagerou', CMP_KAGEROU_NAME

# Register our tasks
grunt.registerTask 'test', ['coffee', 'jasmine:coverage']
grunt.registerTask 'build', ['compile:ts-core', 'concat:dist_all', 'autoprefixer', 'cssmin', 'uglify:all']
grunt.registerTask 'build:core', ['compile:ts-core', 'concat:dist_core', 'autoprefixer', 'cssmin', 'uglify:core']
grunt.registerTask 'build:scripting', ['clean:scripting','concat:scripting_host', 'compile:ts-kagerou', 'copy:scripting_sandbox']

grunt.registerTask 'ci', ['build', 'coffee', 'jasmine:ci']
grunt.registerTask 'test', ['coffee', 'jasmine:coverage']

grunt.registerTask 'default', ['clean', 'build', 'build:scripting', 'watch']
grunt.registerTask 'default', ['clean', 'build', 'build:scripting']
Loading

0 comments on commit 905f787

Please sign in to comment.