mirror of
https://github.com/wassname/phaser.git
synced 2026-07-25 13:20:14 +08:00
Tilemap collision working but needs speeding up
This commit is contained in:
+19
@@ -0,0 +1,19 @@
|
||||
/*
|
||||
* grunt-open
|
||||
* https://github.com/joverson/grunt-open
|
||||
*
|
||||
* Copyright (c) 2012 Jarrod Overson
|
||||
* Licensed under the MIT license.
|
||||
*/
|
||||
|
||||
'use strict';
|
||||
|
||||
var open = require('open');
|
||||
|
||||
module.exports = function(grunt) {
|
||||
grunt.registerMultiTask('open', 'Open urls and files from a grunt task', function() {
|
||||
var dest = this.data.url || this.data.file || this.data.path;
|
||||
|
||||
open(dest);
|
||||
});
|
||||
};
|
||||
Reference in New Issue
Block a user