Jump to content

Search the Community

Showing results for tags 'gulp'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • HTML5 Game Coding
    • News
    • Game Showcase
    • Facebook Instant Games
    • Web Gaming Standards
    • Coding and Game Design
    • Paid Promotion (Buy Banner)
  • Frameworks
    • Pixi.js
    • Phaser 3
    • Phaser 2
    • Babylon.js
    • Panda 2
    • melonJS
    • Haxe JS
    • Kiwi.js
  • General
    • General Talk
    • GameMonetize
  • Business
    • Collaborations (un-paid)
    • Jobs (Hiring and Freelance)
    • Services Offered
    • Marketplace (Sell Apps, Websites, Games)

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Website URL


Twitter


Skype


Location


Interests

Found 13 results

  1. Is there any compelling reason for one move from gulp to webpack? As far as I know, using plug-ins, gulp is able to do everything webpack does.
  2. Hi babylonjs team, I am looking into contributing to babylonjs. So far, I have cloned the github repo and installed node & npm. I edited the ts files in question, and I can get them to compile, for example with "gulp typescript-all". But I ran into a problem trying to test my changes using "gulp run". This starts a webserver as expected: "Webserver started at http://localhost:1338", but this webserver serves a playground (http://localhost:1338/Playground) that does not use the local babylonjs: <!-- Babylon.js --> <script src="https://preview.babylonjs.com/cannon.js"></script> <script src="https://preview.babylonjs.com/draco_decoder.js" type="text/x-draco-decoder"></script> <script src="https://preview.babylonjs.com/Oimo.js"></script> <script src="https://preview.babylonjs.com/babylon.js"></script> So I can't test my changes in this playground, because they don't exist in the online files. (I got the "gulp run" command from here: https://github.com/BabylonJS/Babylon.js/tree/master/Tools/Gulp ) Please let me know if I got something wrong. JP
  3. Hi, It's the first time I try to compile Babylon since I use a new computer so it's certainly linked. As always, I installed gulp as it's described here. Then I wanted to compile using gulp typescript command. But I get this error everytime: Without making any change, I still get the error. I can't compile BJS source anymore. Any idea why ? (And yes, it's really not compiled, I checked) Thanks in advance !
  4. I have made a basic gulp file following Techemon's code (he uses grunt though) here: https://github.com/Temechon/Babylon.js-FPS I notice he is using babylon.2.3.d.ts. (Not 2.5 or 2.6.) With my gulp build I am able to compile my project with babylon.2.3.d.ts and everything compiles successfully. With sublime text if I build (using the official typescript sublime text plugin) with babylon.2.5.d.ts, it compiles my game.ts file successfully, no errors. But if I try to use babylon.2.5.d.ts with gulp using gulp-typescript, I get the following compilation error: node_modules/typescript/lib/lib.d.ts(5603,11): error TS2320: Interface 'AudioContext' cannot simultaneously extend types 'AudioContextBase' and 'EventTarget'. Named property 'addEventListener' of types 'AudioContextBase' and 'EventTarget' are not identical. Am I doing something wrong? Is this a bug with babylon 2.5? Does anyone have an example gulpfile.js (preferably with browserify+tsify) that compiles their TypeScript game successfully with a recent version of Babylon? I don't know if it's relevant but here is my gulpfile.js: 'use strict'; var gulp = require('gulp'); var ts = require("gulp-typescript"); var sourcemaps = require('gulp-sourcemaps'); var paths = { ts: [ 'babylon.2.5.d.ts', 'game.ts', ] }; gulp.task("ts1", function () { return gulp.src(paths.ts) .pipe( ts({ module: 'amd', target: 'es5', declaration: false, sourceMap:true, removeComments:false, out: 'dist' }) ); });
  5. I have added a new file, ../../src/Tools/babylon.tools.pvr.js, to config.json in the extras section right after the dds entry. Gulp fails a test, but even if I made no changes, HolographicCamera (also in extras) causes the test to fail. I am really just a user of Gulp, but I imagine the messy death that follows is just a symptom. This is the output: C:\Babylon.js\Tools\Gulp (master) ([email protected]) λ gulp [17:19:20] Using gulpfile C:\Babylon.js\Tools\Gulp\gulpfile.js [17:19:20] Starting 'default'... [17:19:20] Starting 'includeShaders'... [17:19:20] Finished 'includeShaders' after 6.88 ms [17:19:20] Starting 'shaders'... [17:19:20] Finished 'shaders' after 1.53 ms [17:19:20] Starting 'buildNoWorker'... [17:19:20] Tested 38 tests, 38 passes, 0 failures: PASS [17:19:20] Tested 53 tests, 53 passes, 0 failures: PASS [17:19:20] Tested 115 tests, 115 passes, 0 failures: PASS [17:19:21] ✗ FAIL: Missing 2 expected files: ../../src/Tools/babylon.tools.pvr.js, ../../src/Cameras/Holographic/babylon .holographicCamera.js [17:19:21] Tested 70 tests, 69 passes, 1 failures: FAIL I see that a JS no MAP is being built, yet I get no error messages. Is there a 2nd place these entries need to be made?
  6. Hi all, I'm starting a new Phaser project and I thought I'd take a look at the options for project generators out there. I'm overwhelmed by the amount of options and while I'm sure most of it is down to personal preference, I'd love to hear some opinions on the best way to go. I've worked on a couple of projects in the past that have used Codevinsky's generator, which was great and got me into using prefabs and the like, but that hasn't been updated in over 2 years. These days everyone's talking about ES6. I ran into some problems in the past with inheritance and thought being able to use 'super' would be a good thing, so I thought I'd give that a try, but there loads of different ES6 generators and they all have different features and methodologies. I was thinking of maintaining a list of all the generators I can find with some information about the technology and features, but I wondered before I put too much time into that, if one already exists somewhere? Does anyone have any opinions as to the best way to go, or is it really just a case of trying them all out and going with whatever feels right?
  7. Hello everyone! I have kind of a complicated question. I'm currently doing my thesis at uni, the topic being web based games (specifically 3d ones). I'm going to create a small multiplayer Bomberman clone and reflect the process on the thesis itself; what problems I had, how does the development compare to for example Unity etc. I have used Unity kind of a lot and know the basics of threejs. However, after many hours I decided to make the game with Babylon, since it seems to be more suitable for the task at hand. I have a strong web-development background, so the thesis pretty much gives me some time to learn more about game programming Ah yes the question itself, which is pretty much about setting up the project. I would like to have help with these areas: Using modern JavaScript, ES6 syntax and features for BabylonJS. Maybe load the modules using, for example, SystemJS. Is this a silly idea? Is it best to use, for example, Gulp for the deployment stuff, like minification? However, I have not found that many sample projects at all for the engine itself. Maybe I haven't digged far enough? If anyone has any useful links, sample projects or ideas to share with me I would be really blessed. Thank you in advance for reading my lengthy post
  8. I fail on the latest DynamicFloatArray PR. CannonJS has been happening for a while. Is DynamicFloatArray is by framework, or is this just user stuff?
  9. Hi all, I created a Phaser generator for Yeoman (a scaffolding tool). The original idea was to have an easy way to set up a HTML 5 game project for game jams, prototypes, etc. It doesn't have a lot of features, but it provides: Latest version of Phaser, of course A starter project with an asset preloader scene, plus a main scene.A gulpfile with some basic tasks:Launch a local web serverLivereload (so the web browser does a reload automatically when a JS file changes)Deployment via rsyncBrowserify integration, so you have a nice way to create modules for your game (and/our use NPM packages) or import other files while we wait for ES6 to be common.Two HTML files: one that acts as a viewer/wrapper (which you can customize) and another one that is just a canvas so the game can be embedded in 3rd party sites (like itch.io or Ludum Dare)If you have node and NPM in your system, this is really easy to setup. First you need to install Yeoman and this generator: npm install -g yo generator-gamejamThen you create a new directory for your game (or clone an empty git repository) and run Yeoman from there: mkdir my-fancy-gamecd my-fancy-gameyo gamejamYou will be asked several questions, such as the title of your game, the license you want to use, the resolution you'd like, etc. With this info, you will get a custom base template you can build your game on Once the template is set up, you can try it by running: gulp runThen open your browser in http://localhost:8080 and boom! If you want livereload, you'll need an extension for your browser, like this one for Chrome. There's a gulp task to deploy your game to a server via rsync. In order for that to work, you need to edit the file gulp.config.json with the data of your server. And I think that's it. If you have any comments, or feature requests, they are more than welcome. Happy coding
  10. Hi, I am checking out Babylon.js and wanted to pull it in as a dependency using everyone's favorite hipster tools gulp and bower Alas, I am only getting version 1.10.0 and the bower.json does not have dependencies and main property, making wiredep choke on it. This thread says there back in January, Meulta was working on something related to bower - anybody know how that's coming along? Cheers Ole
  11. Hi phaser users, I think it's time to introduce it to the public since scene and prefab generation feature is just finished. Full features listed: Easy and efficient workflow powered by Node.js and Gulp.jsES6 module supportScene(state) and prefab generatorFast live reload with BrowserSyncDeploy with one line commandFor more details, please check the repo: https://github.com/pixelpicosean/slush-phaser-project NOTE: please always update to latest version before using, the project is under heavy development currently. Some screenshots: Why build ANOTHER generator? Phaser is designed without any module system support, so I searched a lot for project generators come with AMD or CJS support, and I did find some nice projects. I use them for some games, and then I saw ember-cli which comes with ES6 module system, and I fell in love with es6 clean and beautiful syntax. That's the most important reason, another one is I did not find any project support blueprint which gives ember-cli a really efficient workflow and clean project layout. PS. Feedbacks and PRs are welcome, let's make it better together And happy coding everyone
  12. Hello guys, Allow me to introduce myself, I'm Geoffroy Warin, entreprise javascript developper by day and an html5 game development junkie at night. I really love phaser, I think it's fantastic work and as I kept experimenting with it, I realized I was always bootstrapping my projects the same way. Copy my gulp file then create the small phaser bootstrap classes in typescript. So I decided to create a yeoman generator : https://github.com/geowarin/generator-phaser-gulp-typescript It's really simple but you have nothing to do, just type 'gulp' on the command line and you will get : LivereloadAutocompletion thanks to typescript definitions filesTypescript debugging in your browser with source mapsI also use it to deploy to github pages in one command ('gulp deploy'). Hope you will enjoy it. It can really be helpful if you want to dive into typescript or you wish to have an example of a good gulp build file. I'm 100% open to pull requests and improvements. Cheers !
  13. I need to build babylon.js files. Am using Eclipse 4.4 (Luna) on Ubuntu 14.04 LTS. I built close to the directions on thread: http://www.html5gamedevs.com/topic/7747-contribute-to-bjs-in-javascript/ That thread assumes you are using Windows. The changes I made are that I just installed command-line git from the Ubuntu package repository. I built and installed Node from source (0.10.31). This is because there is a name conflict with the name 'node' in the Ubuntu repository & things are not in the directory tree Gulp expects on linux of '/usr/local'. I changed to the Gulp directory and typed 'sudo npm install -g gulp', and it worked see output below: /babylon/Babylon.js/Tools/gulp$ sudo npm install -g gulp[sudo] password for jeff: /usr/local/bin/gulp -> /usr/local/lib/node_modules/gulp/bin/[email protected] /usr/local/lib/node_modules/gulp├── [email protected]├── [email protected]├── [email protected]├── [email protected]├── [email protected]├── [email protected]├── [email protected]├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected])├── [email protected] ([email protected], [email protected], [email protected])├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected])├── [email protected] ([email protected], [email protected], [email protected])└── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected])The problem starts with getting the dependencies: 'sudo npm install' /babylon/Babylon.js/Tools/gulp$ sudo npm installnpm WARN package.json [email protected] No repository field.npm WARN deprecated [email protected]: use gulp-rimraf insteadnpm ERR! Error: EPERM, symlink '../rimraf/bin.js'npm ERR! { [Error: EPERM, symlink '../rimraf/bin.js'] errno: 50, code: 'EPERM', path: '../rimraf/bin.js' }npm ERR! npm ERR! Please try running this command again as root/Administrator.npm ERR! System Linux 3.13.0-34-genericnpm ERR! command "/usr/local/bin/node" "/usr/local/bin/npm" "install"npm ERR! cwd /babylon/Babylon.js/Tools/Gulpnpm ERR! node -v v0.10.31npm ERR! npm -v 1.4.23npm ERR! path ../rimraf/bin.jsnpm ERR! code EPERMnpm ERR! errno 50npm ERR! stack Error: EPERM, symlink '../rimraf/bin.js'npm ERR! Error: ENOENT, lstat '/babylon/Babylon.js/Tools/Gulp/node_modules/gulp/node_modules/semver/test/index.js'npm ERR! If you need help, you may report this *entire* log,npm ERR! including the npm and node versions, at:npm ERR! <http://github.com/npm/npm/issues>npm ERR! System Linux 3.13.0-34-genericnpm ERR! command "/usr/local/bin/node" "/usr/local/bin/npm" "install"npm ERR! cwd /babylon/Babylon.js/Tools/Gulpnpm ERR! node -v v0.10.31npm ERR! npm -v 1.4.23npm ERR! path /babylon/Babylon.js/Tools/Gulp/node_modules/gulp/node_modules/semver/test/index.jsnpm ERR! fstream_path /babylon/Babylon.js/Tools/Gulp/node_modules/gulp/node_modules/semver/test/index.jsnpm ERR! fstream_type Filenpm ERR! fstream_class FileWriternpm ERR! code ENOENTnpm ERR! errno 34npm ERR! fstream_stack /usr/local/lib/node_modules/npm/node_modules/fstream/lib/writer.js:284:26npm ERR! fstream_stack Object.oncomplete (evalmachine.<anonymous>:107:15)npm ERR! error rolling back Error: ENOTEMPTY, rmdir '/babylon/Babylon.js/Tools/Gulp/node_modules/gulp/node_modules/gulp-util/node_modules/through2'npm ERR! error rolling back [email protected] { [Error: ENOTEMPTY, rmdir '/babylon/Babylon.js/Tools/Gulp/node_modules/gulp/node_modules/gulp-util/node_modules/through2']npm ERR! error rolling back errno: 53,npm ERR! error rolling back code: 'ENOTEMPTY',npm ERR! error rolling back path: '/babylon/Babylon.js/Tools/Gulp/node_modules/gulp/node_modules/gulp-util/node_modules/through2' }npm ERR! Error: ENOENT, lstat '/babylon/Babylon.js/Tools/Gulp/node_modules/gulp/node_modules/gulp-util/node_modules/multipipe/History.md'npm ERR! If you need help, you may report this *entire* log,npm ERR! including the npm and node versions, at:npm ERR! <http://github.com/npm/npm/issues>npm ERR! System Linux 3.13.0-34-genericnpm ERR! command "/usr/local/bin/node" "/usr/local/bin/npm" "install"npm ERR! cwd /babylon/Babylon.js/Tools/Gulpnpm ERR! node -v v0.10.31npm ERR! npm -v 1.4.23npm ERR! path /babylon/Babylon.js/Tools/Gulp/node_modules/gulp/node_modules/gulp-util/node_modules/multipipe/History.mdnpm ERR! fstream_path /babylon/Babylon.js/Tools/Gulp/node_modules/gulp/node_modules/gulp-util/node_modules/multipipe/History.mdnpm ERR! fstream_type Filenpm ERR! fstream_class FileWriternpm ERR! code ENOENTnpm ERR! errno 34npm ERR! fstream_stack /usr/local/lib/node_modules/npm/node_modules/fstream/lib/writer.js:284:26npm ERR! fstream_stack Object.oncomplete (evalmachine.<anonymous>:107:15)npm ERR! Error: ENOENT, lstat '/babylon/Babylon.js/Tools/Gulp/node_modules/gulp/node_modules/gulp-util/node_modules/lodash.template/index.js'npm ERR! If you need help, you may report this *entire* log,npm ERR! including the npm and node versions, at:npm ERR! <http://github.com/npm/npm/issues>npm ERR! System Linux 3.13.0-34-genericnpm ERR! command "/usr/local/bin/node" "/usr/local/bin/npm" "install"npm ERR! cwd /babylon/Babylon.js/Tools/Gulpnpm ERR! node -v v0.10.31npm ERR! npm -v 1.4.23npm ERR! path /babylon/Babylon.js/Tools/Gulp/node_modules/gulp/node_modules/gulp-util/node_modules/lodash.template/index.jsnpm ERR! fstream_path /babylon/Babylon.js/Tools/Gulp/node_modules/gulp/node_modules/gulp-util/node_modules/lodash.template/index.jsnpm ERR! fstream_type Filenpm ERR! fstream_class FileWriternpm ERR! code ENOENTnpm ERR! errno 34npm ERR! fstream_stack /usr/local/lib/node_modules/npm/node_modules/fstream/lib/writer.js:284:26npm ERR! fstream_stack Object.oncomplete (evalmachine.<anonymous>:107:15)npm ERR! Error: ENOENT, lstat '/babylon/Babylon.js/Tools/Gulp/node_modules/gulp/node_modules/gulp-util/node_modules/dateformat/lib/dateformat.js'npm ERR! If you need help, you may report this *entire* log,npm ERR! including the npm and node versions, at:npm ERR! <http://github.com/npm/npm/issues>npm ERR! System Linux 3.13.0-34-genericnpm ERR! command "/usr/local/bin/node" "/usr/local/bin/npm" "install"npm ERR! cwd /babylon/Babylon.js/Tools/Gulpnpm ERR! node -v v0.10.31npm ERR! npm -v 1.4.23npm ERR! path /babylon/Babylon.js/Tools/Gulp/node_modules/gulp/node_modules/gulp-util/node_modules/dateformat/lib/dateformat.jsnpm ERR! fstream_path /babylon/Babylon.js/Tools/Gulp/node_modules/gulp/node_modules/gulp-util/node_modules/dateformat/lib/dateformat.jsnpm ERR! fstream_type Filenpm ERR! fstream_class FileWriternpm ERR! code ENOENTnpm ERR! errno 34npm ERR! fstream_stack /usr/local/lib/node_modules/npm/node_modules/fstream/lib/writer.js:284:26npm ERR! fstream_stack Object.oncomplete (evalmachine.<anonymous>:107:15)npm ERR! Error: ENOENT, lstat '/babylon/Babylon.js/Tools/Gulp/node_modules/gulp/node_modules/gulp-util/node_modules/vinyl/package.json'npm ERR! If you need help, you may report this *entire* log,npm ERR! including the npm and node versions, at:npm ERR! <http://github.com/npm/npm/issues>npm ERR! System Linux 3.13.0-34-genericnpm ERR! command "/usr/local/bin/node" "/usr/local/bin/npm" "install"npm ERR! cwd /babylon/Babylon.js/Tools/Gulpnpm ERR! node -v v0.10.31npm ERR! npm -v 1.4.23npm ERR! path /babylon/Babylon.js/Tools/Gulp/node_modules/gulp/node_modules/gulp-util/node_modules/vinyl/package.jsonnpm ERR! fstream_path /babylon/Babylon.js/Tools/Gulp/node_modules/gulp/node_modules/gulp-util/node_modules/vinyl/package.jsonnpm ERR! fstream_type Filenpm ERR! fstream_class FileWriternpm ERR! code ENOENTnpm ERR! errno 34npm ERR! fstream_stack /usr/local/lib/node_modules/npm/node_modules/fstream/lib/writer.js:284:26npm ERR! fstream_stack Object.oncomplete (evalmachine.<anonymous>:107:15)npm ERR! error rolling back Error: ENOTEMPTY, rmdir '/babylon/Babylon.js/Tools/Gulp/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash._escapestringchar'npm ERR! error rolling back [email protected] { [Error: ENOTEMPTY, rmdir '/babylon/Babylon.js/Tools/Gulp/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash._escapestringchar']npm ERR! error rolling back errno: 53,npm ERR! error rolling back code: 'ENOTEMPTY',npm ERR! error rolling back path: '/babylon/Babylon.js/Tools/Gulp/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash._escapestringchar' }npm ERR! Error: ENOENT, open '/babylon/Babylon.js/Tools/Gulp/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.defaults/LICENSE.txt'npm ERR! If you need help, you may report this *entire* log,npm ERR! including the npm and node versions, at:npm ERR! <http://github.com/npm/npm/issues>npm ERR! System Linux 3.13.0-34-genericnpm ERR! command "/usr/local/bin/node" "/usr/local/bin/npm" "install"npm ERR! cwd /babylon/Babylon.js/Tools/Gulpnpm ERR! node -v v0.10.31npm ERR! npm -v 1.4.23npm ERR! path /babylon/Babylon.js/Tools/Gulp/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.defaults/LICENSE.txtnpm ERR! code ENOENTnpm ERR! errno 34npm ERR! Error: ENOENT, lstat '/babylon/Babylon.js/Tools/Gulp/node_modules/gulp-util/node_modules/minimist/test/parse.js'npm ERR! If you need help, you may report this *entire* log,npm ERR! including the npm and node versions, at:npm ERR! <http://github.com/npm/npm/issues>npm ERR! System Linux 3.13.0-34-genericnpm ERR! command "/usr/local/bin/node" "/usr/local/bin/npm" "install"npm ERR! cwd /babylon/Babylon.js/Tools/Gulpnpm ERR! node -v v0.10.31npm ERR! npm -v 1.4.23npm ERR! path /babylon/Babylon.js/Tools/Gulp/node_modules/gulp-util/node_modules/minimist/test/parse.jsnpm ERR! fstream_path /babylon/Babylon.js/Tools/Gulp/node_modules/gulp-util/node_modules/minimist/test/parse.jsnpm ERR! fstream_type Filenpm ERR! fstream_class FileWriternpm ERR! code ENOENTnpm ERR! errno 34npm ERR! fstream_stack /usr/local/lib/node_modules/npm/node_modules/fstream/lib/writer.js:284:26npm ERR! fstream_stack Object.oncomplete (evalmachine.<anonymous>:107:15)npm ERR! Error: ENOENT, chmod '/babylon/Babylon.js/Tools/Gulp/node_modules/gulp-tsc/node_modules/vinyl-fs/.jshintrc'npm ERR! If you need help, you may report this *entire* log,npm ERR! including the npm and node versions, at:npm ERR! <http://github.com/npm/npm/issues>npm ERR! System Linux 3.13.0-34-genericnpm ERR! command "/usr/local/bin/node" "/usr/local/bin/npm" "install"npm ERR! cwd /babylon/Babylon.js/Tools/Gulpnpm ERR! node -v v0.10.31npm ERR! npm -v 1.4.23npm ERR! path /babylon/Babylon.js/Tools/Gulp/node_modules/gulp-tsc/node_modules/vinyl-fs/.jshintrcnpm ERR! fstream_path /babylon/Babylon.js/Tools/Gulp/node_modules/gulp-tsc/node_modules/vinyl-fs/.jshintrcnpm ERR! fstream_type Filenpm ERR! fstream_class FileWriternpm ERR! fstream_finish_call chmodnpm ERR! code ENOENTnpm ERR! errno 34npm ERR! fstream_stack /usr/local/lib/node_modules/npm/node_modules/fstream/lib/writer.js:305:19npm ERR! fstream_stack Object.oncomplete (evalmachine.<anonymous>:107:15)npm ERR! error rolling back Error: ENOTEMPTY, rmdir '/babylon/Babylon.js/Tools/Gulp/node_modules/gulp-tsc/node_modules/resolve'npm ERR! error rolling back [email protected] { [Error: ENOTEMPTY, rmdir '/babylon/Babylon.js/Tools/Gulp/node_modules/gulp-tsc/node_modules/resolve']npm ERR! error rolling back errno: 53,npm ERR! error rolling back code: 'ENOTEMPTY',npm ERR! error rolling back path: '/babylon/Babylon.js/Tools/Gulp/node_modules/gulp-tsc/node_modules/resolve' }npm ERR! Error: ENOENT, lstat '/babylon/Babylon.js/Tools/Gulp/node_modules/gulp-tsc/node_modules/async/README.md'npm ERR! If you need help, you may report this *entire* log,npm ERR! including the npm and node versions, at:npm ERR! <http://github.com/npm/npm/issues>npm ERR! System Linux 3.13.0-34-genericnpm ERR! command "/usr/local/bin/node" "/usr/local/bin/npm" "install"npm ERR! cwd /babylon/Babylon.js/Tools/Gulpnpm ERR! node -v v0.10.31npm ERR! npm -v 1.4.23npm ERR! path /babylon/Babylon.js/Tools/Gulp/node_modules/gulp-tsc/node_modules/async/README.mdnpm ERR! fstream_path /babylon/Babylon.js/Tools/Gulp/node_modules/gulp-tsc/node_modules/async/README.mdnpm ERR! fstream_type Filenpm ERR! fstream_class FileWriternpm ERR! code ENOENTnpm ERR! errno 34npm ERR! fstream_stack /usr/local/lib/node_modules/npm/node_modules/fstream/lib/writer.js:284:26npm ERR! fstream_stack Object.oncomplete (evalmachine.<anonymous>:107:15)npm ERR! Error: ENOENT, open '/babylon/Babylon.js/Tools/Gulp/node_modules/gulp/node_modules/vinyl-fs/node_modules/glob-stream/node_modules/minimatch/package.json'npm ERR! If you need help, you may report this *entire* log,npm ERR! including the npm and node versions, at:npm ERR! <http://github.com/npm/npm/issues>npm ERR! System Linux 3.13.0-34-genericnpm ERR! command "/usr/local/bin/node" "/usr/local/bin/npm" "install"npm ERR! cwd /babylon/Babylon.js/Tools/Gulpnpm ERR! node -v v0.10.31npm ERR! npm -v 1.4.23npm ERR! path /babylon/Babylon.js/Tools/Gulp/node_modules/gulp/node_modules/vinyl-fs/node_modules/glob-stream/node_modules/minimatch/package.jsonnpm ERR! code ENOENTnpm ERR! errno 34npm ERR! Error: ENOENT, open '/babylon/Babylon.js/Tools/Gulp/node_modules/gulp/node_modules/vinyl-fs/node_modules/glob-stream/node_modules/glob2base/package.json'npm ERR! If you need help, you may report this *entire* log,npm ERR! including the npm and node versions, at:npm ERR! <http://github.com/npm/npm/issues>npm ERR! System Linux 3.13.0-34-genericnpm ERR! command "/usr/local/bin/node" "/usr/local/bin/npm" "install"npm ERR! cwd /babylon/Babylon.js/Tools/Gulpnpm ERR! node -v v0.10.31npm ERR! npm -v 1.4.23npm ERR! path /babylon/Babylon.js/Tools/Gulp/node_modules/gulp/node_modules/vinyl-fs/node_modules/glob-stream/node_modules/glob2base/package.jsonnpm ERR! code ENOENTnpm ERR! errno 34npm ERR! Error: ENOENT, open '/babylon/Babylon.js/Tools/Gulp/node_modules/gulp/node_modules/vinyl-fs/node_modules/glob-stream/node_modules/glob/package.json'npm ERR! If you need help, you may report this *entire* log,npm ERR! including the npm and node versions, at:npm ERR! <http://github.com/npm/npm/issues>npm ERR! System Linux 3.13.0-34-genericnpm ERR! command "/usr/local/bin/node" "/usr/local/bin/npm" "install"npm ERR! cwd /babylon/Babylon.js/Tools/Gulpnpm ERR! node -v v0.10.31npm ERR! npm -v 1.4.23npm ERR! path /babylon/Babylon.js/Tools/Gulp/node_modules/gulp/node_modules/vinyl-fs/node_modules/glob-stream/node_modules/glob/package.jsonnpm ERR! code ENOENTnpm ERR! errno 34npm ERR! Error: ENOENT, open '/babylon/Babylon.js/Tools/Gulp/node_modules/gulp/node_modules/vinyl-fs/node_modules/glob-stream/node_modules/unique-stream/package.json'npm ERR! If you need help, you may report this *entire* log,npm ERR! including the npm and node versions, at:npm ERR! <http://github.com/npm/npm/issues>npm ERR! System Linux 3.13.0-34-genericnpm ERR! command "/usr/local/bin/node" "/usr/local/bin/npm" "install"npm ERR! cwd /babylon/Babylon.js/Tools/Gulpnpm ERR! node -v v0.10.31npm ERR! npm -v 1.4.23npm ERR! path /babylon/Babylon.js/Tools/Gulp/node_modules/gulp/node_modules/vinyl-fs/node_modules/glob-stream/node_modules/unique-stream/package.jsonnpm ERR! code ENOENTnpm ERR! errno 34npm ERR! Error: ENOENT, open '/babylon/Babylon.js/Tools/Gulp/node_modules/gulp/node_modules/vinyl-fs/node_modules/glob-stream/node_modules/ordered-read-streams/package.json'npm ERR! If you need help, you may report this *entire* log,npm ERR! including the npm and node versions, at:npm ERR! <http://github.com/npm/npm/issues>npm ERR! System Linux 3.13.0-34-genericnpm ERR! command "/usr/local/bin/node" "/usr/local/bin/npm" "install"npm ERR! cwd /babylon/Babylon.js/Tools/Gulpnpm ERR! node -v v0.10.31npm ERR! npm -v 1.4.23npm ERR! path /babylon/Babylon.js/Tools/Gulp/node_modules/gulp/node_modules/vinyl-fs/node_modules/glob-stream/node_modules/ordered-read-streams/package.jsonnpm ERR! code ENOENTnpm ERR! errno 34npm ERR! error rolling back Error: ENOTEMPTY, rmdir '/babylon/Babylon.js/Tools/Gulp/node_modules/gulp/node_modules/vinyl-fs/node_modules/mkdirp/node_modules/minimist'npm ERR! error rolling back [email protected] { [Error: ENOTEMPTY, rmdir '/babylon/Babylon.js/Tools/Gulp/node_modules/gulp/node_modules/vinyl-fs/node_modules/mkdirp/node_modules/minimist']npm ERR! error rolling back errno: 53,npm ERR! error rolling back code: 'ENOTEMPTY',npm ERR! error rolling back path: '/babylon/Babylon.js/Tools/Gulp/node_modules/gulp/node_modules/vinyl-fs/node_modules/mkdirp/node_modules/minimist' }npm ERR! Error: ENOENT, lstat '/babylon/Babylon.js/Tools/Gulp/node_modules/gulp/node_modules/vinyl-fs/node_modules/glob-stream/node_modules/through2/package.json'npm ERR! If you need help, you may report this *entire* log,npm ERR! including the npm and node versions, at:npm ERR! <http://github.com/npm/npm/issues>npm ERR! System Linux 3.13.0-34-genericnpm ERR! command "/usr/local/bin/node" "/usr/local/bin/npm" "install"npm ERR! cwd /babylon/Babylon.js/Tools/Gulpnpm ERR! node -v v0.10.31npm ERR! npm -v 1.4.23npm ERR! path /babylon/Babylon.js/Tools/Gulp/node_modules/gulp/node_modules/vinyl-fs/node_modules/glob-stream/node_modules/through2/package.jsonnpm ERR! fstream_path /babylon/Babylon.js/Tools/Gulp/node_modules/gulp/node_modules/vinyl-fs/node_modules/glob-stream/node_modules/through2/package.jsonnpm ERR! fstream_type Filenpm ERR! fstream_class FileWriternpm ERR! code ENOENTnpm ERR! errno 34npm ERR! fstream_stack /usr/local/lib/node_modules/npm/node_modules/fstream/lib/writer.js:284:26npm ERR! fstream_stack Object.oncomplete (evalmachine.<anonymous>:107:15)npm ERR! Error: ENOENT, lstat '/babylon/Babylon.js/Tools/Gulp/node_modules/gulp-uglify/node_modules/gulp-util/node_modules/chalk/node_modules/has-ansi/node_modules/ansi-regex/package.json'npm ERR! If you need help, you may report this *entire* log,npm ERR! including the npm and node versions, at:npm ERR! <http://github.com/npm/npm/issues>npm ERR! System Linux 3.13.0-34-genericnpm ERR! command "/usr/local/bin/node" "/usr/local/bin/npm" "install"npm ERR! cwd /babylon/Babylon.js/Tools/Gulpnpm ERR! node -v v0.10.31npm ERR! npm -v 1.4.23npm ERR! path /babylon/Babylon.js/Tools/Gulp/node_modules/gulp-uglify/node_modules/gulp-util/node_modules/chalk/node_modules/has-ansi/node_modules/ansi-regex/package.jsonnpm ERR! fstream_path /babylon/Babylon.js/Tools/Gulp/node_modules/gulp-uglify/node_modules/gulp-util/node_modules/chalk/node_modules/has-ansi/node_modules/ansi-regex/package.jsonnpm ERR! fstream_type Filenpm ERR! fstream_class FileWriternpm ERR! code ENOENTnpm ERR! errno 34npm ERR! fstream_stack /usr/local/lib/node_modules/npm/node_modules/fstream/lib/writer.js:284:26npm ERR! fstream_stack Object.oncomplete (evalmachine.<anonymous>:107:15)npm ERR! Error: ENOENT, lstat '/babylon/Babylon.js/Tools/Gulp/node_modules/gulp/node_modules/vinyl-fs/node_modules/glob-watcher/node_modules/gaze/lib/gaze.js'npm ERR! If you need help, you may report this *entire* log,npm ERR! including the npm and node versions, at:npm ERR! <http://github.com/npm/npm/issues>npm ERR! System Linux 3.13.0-34-genericnpm ERR! command "/usr/local/bin/node" "/usr/local/bin/npm" "install"npm ERR! cwd /babylon/Babylon.js/Tools/Gulpnpm ERR! node -v v0.10.31npm ERR! npm -v 1.4.23npm ERR! path /babylon/Babylon.js/Tools/Gulp/node_modules/gulp/node_modules/vinyl-fs/node_modules/glob-watcher/node_modules/gaze/lib/gaze.jsnpm ERR! fstream_path /babylon/Babylon.js/Tools/Gulp/node_modules/gulp/node_modules/vinyl-fs/node_modules/glob-watcher/node_modules/gaze/lib/gaze.jsnpm ERR! fstream_type Filenpm ERR! fstream_class FileWriternpm ERR! code ENOENTnpm ERR! errno 34npm ERR! fstream_stack /usr/local/lib/node_modules/npm/node_modules/fstream/lib/writer.js:284:26npm ERR! fstream_stack Object.oncomplete (evalmachine.<anonymous>:107:15)npm ERR! error rolling back Error: ENOTEMPTY, rmdir '/babylon/Babylon.js/Tools/Gulp/node_modules/gulp-uglify/node_modules/gulp-util/node_modules/through2/node_modules/readable-stream'npm ERR! error rolling back [email protected] { [Error: ENOTEMPTY, rmdir '/babylon/Babylon.js/Tools/Gulp/node_modules/gulp-uglify/node_modules/gulp-util/node_modules/through2/node_modules/readable-stream']npm ERR! error rolling back errno: 53,npm ERR! error rolling back code: 'ENOTEMPTY',npm ERR! error rolling back path: '/babylon/Babylon.js/Tools/Gulp/node_modules/gulp-uglify/node_modules/gulp-util/node_modules/through2/node_modules/readable-stream' }npm ERR! Error: ENOENT, lstat '/babylon/Babylon.js/Tools/Gulp/node_modules/gulp-uglify/node_modules/gulp-util/node_modules/through2/node_modules/readable-stream/lib/_stream_passthrough.js'npm ERR! If you need help, you may report this *entire* log,npm ERR! including the npm and node versions, at:npm ERR! <http://github.com/npm/npm/issues>npm ERR! System Linux 3.13.0-34-genericnpm ERR! command "/usr/local/bin/node" "/usr/local/bin/npm" "install"npm ERR! cwd /babylon/Babylon.js/Tools/Gulpnpm ERR! node -v v0.10.31npm ERR! npm -v 1.4.23npm ERR! path /babylon/Babylon.js/Tools/Gulp/node_modules/gulp-uglify/node_modules/gulp-util/node_modules/through2/node_modules/readable-stream/lib/_stream_passthrough.jsnpm ERR! fstream_path /babylon/Babylon.js/Tools/Gulp/node_modules/gulp-uglify/node_modules/gulp-util/node_modules/through2/node_modules/readable-stream/lib/_stream_passthrough.jsnpm ERR! fstream_type Filenpm ERR! fstream_class FileWriternpm ERR! code ENOENTnpm ERR! errno 34npm ERR! fstream_stack /usr/local/lib/node_modules/npm/node_modules/fstream/lib/writer.js:284:26npm ERR! fstream_stack Object.oncomplete (evalmachine.<anonymous>:107:15)npm ERR! Error: ENOENT, lstat '/babylon/Babylon.js/Tools/Gulp/node_modules/gulp-uglify/node_modules/uglify-js/lib/parse.js'npm ERR! If you need help, you may report this *entire* log,npm ERR! including the npm and node versions, at:npm ERR! <http://github.com/npm/npm/issues>npm ERR! System Linux 3.13.0-34-genericnpm ERR! command "/usr/local/bin/node" "/usr/local/bin/npm" "install"npm ERR! cwd /babylon/Babylon.js/Tools/Gulpnpm ERR! node -v v0.10.31npm ERR! npm -v 1.4.23npm ERR! path /babylon/Babylon.js/Tools/Gulp/node_modules/gulp-uglify/node_modules/uglify-js/lib/parse.jsnpm ERR! fstream_path /babylon/Babylon.js/Tools/Gulp/node_modules/gulp-uglify/node_modules/uglify-js/lib/parse.jsnpm ERR! fstream_type Filenpm ERR! fstream_class FileWriternpm ERR! code ENOENTnpm ERR! errno 34npm ERR! fstream_stack /usr/local/lib/node_modules/npm/node_modules/fstream/lib/writer.js:284:26npm ERR! fstream_stack Object.oncomplete (evalmachine.<anonymous>:107:15)npm ERR! Error: ENOENT, lstat '/babylon/Babylon.js/Tools/Gulp/node_modules/gulp/node_modules/liftoff/artwork/liftoff-icon.eps'npm ERR! If you need help, you may report this *entire* log,npm ERR! including the npm and node versions, at:npm ERR! <http://github.com/npm/npm/issues>npm ERR! System Linux 3.13.0-34-genericnpm ERR! command "/usr/local/bin/node" "/usr/local/bin/npm" "install"npm ERR! cwd /babylon/Babylon.js/Tools/Gulpnpm ERR! node -v v0.10.31npm ERR! npm -v 1.4.23npm ERR! path /babylon/Babylon.js/Tools/Gulp/node_modules/gulp/node_modules/liftoff/artwork/liftoff-icon.epsnpm ERR! fstream_path /babylon/Babylon.js/Tools/Gulp/node_modules/gulp/node_modules/liftoff/artwork/liftoff-icon.epsnpm ERR! fstream_type Filenpm ERR! fstream_class FileWriternpm ERR! code ENOENTnpm ERR! errno 34npm ERR! fstream_stack /usr/local/lib/node_modules/npm/node_modules/fstream/lib/writer.js:284:26npm ERR! fstream_stack Object.oncomplete (evalmachine.<anonymous>:107:15)npm ERR! Error: ENOENT, lstat '/babylon/Babylon.js/Tools/Gulp/node_modules/gulp-tsc/node_modules/byline/test/rfc.txt'npm ERR! If you need help, you may report this *entire* log,npm ERR! including the npm and node versions, at:npm ERR! <http://github.com/npm/npm/issues>npm ERR! System Linux 3.13.0-34-genericnpm ERR! command "/usr/local/bin/node" "/usr/local/bin/npm" "install"npm ERR! cwd /babylon/Babylon.js/Tools/Gulpnpm ERR! node -v v0.10.31npm ERR! npm -v 1.4.23npm ERR! path /babylon/Babylon.js/Tools/Gulp/node_modules/gulp-tsc/node_modules/byline/test/rfc.txtnpm ERR! fstream_path /babylon/Babylon.js/Tools/Gulp/node_modules/gulp-tsc/node_modules/byline/test/rfc.txtnpm ERR! fstream_type Filenpm ERR! fstream_class FileWriternpm ERR! code ENOENTnpm ERR! errno 34npm ERR! fstream_stack /usr/local/lib/node_modules/npm/node_modules/fstream/lib/writer.js:284:26npm ERR! fstream_stack Object.oncomplete (evalmachine.<anonymous>:107:15)npm ERR! Error: ENOENT, lstat '/babylon/Babylon.js/Tools/Gulp/node_modules/gulp-tsc/node_modules/typescript/bin/tsc.js'npm ERR! If you need help, you may report this *entire* log,npm ERR! including the npm and node versions, at:npm ERR! <http://github.com/npm/npm/issues>npm ERR! System Linux 3.13.0-34-genericnpm ERR! command "/usr/local/bin/node" "/usr/local/bin/npm" "install"npm ERR! cwd /babylon/Babylon.js/Tools/Gulpnpm ERR! node -v v0.10.31npm ERR! npm -v 1.4.23npm ERR! path /babylon/Babylon.js/Tools/Gulp/node_modules/gulp-tsc/node_modules/typescript/bin/tsc.jsnpm ERR! fstream_path /babylon/Babylon.js/Tools/Gulp/node_modules/gulp-tsc/node_modules/typescript/bin/tsc.jsnpm ERR! fstream_type Filenpm ERR! fstream_class FileWriternpm ERR! code ENOENTnpm ERR! errno 34npm ERR! fstream_stack /usr/local/lib/node_modules/npm/node_modules/fstream/lib/writer.js:284:26npm ERR! fstream_stack Object.oncomplete (evalmachine.<anonymous>:107:15)npm ERR! npm ERR! Additional logging details can be found in:npm ERR! /babylon/Babylon.js/Tools/Gulp/npm-debug.lognpm ERR! not ok code 0I now also see a log file in the current directory which was not there before. It is not quite the same as the output. Can anyone see the problem? I had been turning on .js generation in the Palantir Typescript plug-in, but that has 2 problems: I does not create those 3 unprintable chars at the beginning of each .js. This flags all .js as modified.This does not generate the combined babylon.js Thanks, Jeff npm-debug.log.txt
×
×
  • Create New...