Skip to content

Commit

Permalink
Merge branch 'master' of github.com:AnalyticalGraphicsInc/gltf-pipeli…
Browse files Browse the repository at this point in the history
…ne into updateVersion
  • Loading branch information
lasalvavida committed Mar 21, 2017
2 parents d75085e + bf401ef commit 37b97c0
Show file tree
Hide file tree
Showing 11 changed files with 9 additions and 59 deletions.
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
node_modules
npm-debug.log

# TypeScript definitions
typings

# WebStorm user-specific
.idea/workspace.xml
.idea/tasks.xml
Expand Down
1 change: 0 additions & 1 deletion .idea/gltf-pipeline.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 0 additions & 8 deletions .idea/jsLibraryMappings.xml

This file was deleted.

13 changes: 0 additions & 13 deletions .idea/libraries/typings.xml

This file was deleted.

3 changes: 1 addition & 2 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,9 @@
/output
/specs
/test
/typings
.jshintrc
.npmignore
.travis.yml
.appveyor.yml
gulpfile.js
typings.json
*.tgz
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Change Log
==========

### 0.1.0-alpha11 - ??
### 0.1.0-alpha11 - 2017-03-07
* Added `compressTextures` stage to compress input textures to a variety of compressed texture formats.
* Optimized `mergeBuffers` to avoid repeated copies, drastically improving performance when there are lots of buffers to merge.
* Fixed a bug in `addPipelineExtras` that made it try to add extras to null objects.
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,6 @@ node -e "var test = require('gltf-pipeline');" # No output on success
* `git push origin <version>`
* Publish
```
npm run prepublish
npm publish
```

Expand Down
6 changes: 3 additions & 3 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,15 +97,15 @@ gulp.task('coverage', function () {
// Travis runs Ubuntu 12.04.5 which has glibc 2.15, while crunch requires glibc 2.22 or higher
var additionalExcludes = '';
if (defined(argv.excludeCompressedTextures)) {
additionalExcludes += 'specs/lib/compressTexturesSpec.js';
additionalExcludes += 'specs/lib/compressTexturesMultipleFormatsSpec.js';
additionalExcludes += '-x "specs/lib/compressTexturesSpec.js"';
additionalExcludes += '-x "specs/lib/compressTexturesMultipleFormatsSpec.js"';
}

child_process.execSync('istanbul' +
' cover' +
' --include-all-sources' +
' --dir coverage' +
' -x "specs/** coverage/** dist/** index.js gulpfile.js"' + additionalExcludes +
' -x "specs/**" -x "bin/**" -x "coverage/**" -x "dist/**" -x "index.js" -x "gulpfile.js"' + additionalExcludes +
' node_modules/jasmine/bin/jasmine.js' +
' JASMINE_CONFIG_PATH=specs/jasmine.json', {
stdio: [process.stdin, process.stdout, process.stderr]
Expand Down
2 changes: 2 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ module.exports = {
combineMeshes : require('./lib/combineMeshes'),
combineNodes : require('./lib/combineNodes'),
compressIntegerAccessors : require('./lib/compressIntegerAccessors'),
compressTexture : require('./lib/compressTexture'),
compressTextureCoordinates : require('./lib/compressTextureCoordinates'),
compressTextures : require('./lib/compressTextures'),
convertDagToTree : require('./lib/convertDagToTree'),
encodeImages : require('./lib/encodeImages'),
findAccessorMinMax : require('./lib/findAccessorMinMax'),
Expand Down
6 changes: 2 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gltf-pipeline",
"version": "0.1.0-alpha10",
"version": "0.1.0-alpha11",
"description": "Content pipeline tools for optimizing glTF assets.",
"license": "Apache-2.0",
"contributors": [
Expand Down Expand Up @@ -52,13 +52,11 @@
"jshint": "^2.9.4",
"jshint-stylish": "^2.2.1",
"open": "^0.0.5",
"requirejs": "^2.3.2",
"typings": "^2.0.0"
"requirejs": "^2.3.2"
},
"scripts": {
"build-cesium": "gulp build-cesium",
"build-cesium-combine": "gulp build-cesium-combine",
"prepublish": "typings install",
"jsdoc": "jsdoc ./lib -R ./README.md -d doc",
"jsHint": "gulp jsHint",
"jsHint-watch": "gulp jsHint-watch",
Expand Down
23 changes: 0 additions & 23 deletions typings.json

This file was deleted.

0 comments on commit 37b97c0

Please sign in to comment.