Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

fbx-gltf-pipeline

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fbx-gltf-pipeline - npm Package Compare versions

Comparing version 0.0.2 to 0.0.3

LICENSE.md

12

bin/fbx-gltf-pipeline.js

@@ -5,9 +5,13 @@ #!/usr/bin/env node

const convert = require("../src/index");
const fs = require("fs-extra");
const path = require("path");
const package = fs.readJSONSync(path.join(__dirname, "..", "package.json"));
program
.arguments('<src>')
.version(package.version)
.usage('<src> [options]')
.option("-o, --out <out>", "The directory to output the file.")
.option("-c, --components <components>", "The path to the components json file")
.option("-u, --unlit <unlit>", "Use KHR_materials-unlit.")
.action((src) => {
.option("-u, --unlit", "Use KHR_materials-unlit.")
.action((src, options) => {
convert(src, program).then(() => {

@@ -22,4 +26,4 @@ process.exit(0);

if (!program.args.length) {
if (program.args.length === 0) {
program.outputHelp();
}
{
"name": "fbx-gltf-pipeline",
"version": "0.0.2",
"version": "0.0.3",
"main": "src/index.js",
"license": "MIT",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/MozillaReality/fbx-gltf-pipeline.git"
},
"dependencies": {

@@ -7,0 +11,0 @@ "@robertlong/fbx2gltf": "^0.10.1",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc