refactor: Extricates analysis from the scope of this project

Removes the ./lib/analysis module from the scope of this project along with all related
documentation and test coverage.

BREAKING CHANGE: Module no longer provides a _meta object with returned project object.
This commit is contained in:
Andrew Sliwinski 2018-03-24 11:19:01 -04:00
parent e8369be7f5
commit f7cb29dff6
8 changed files with 6 additions and 284 deletions

View file

@ -3,7 +3,6 @@ var async = require('async');
var unpack = require('./lib/unpack');
var parse = require('./lib/parse');
var validate = require('./lib/validate');
var analyze = require('./lib/analyze');
/**
* Unpacks, parses, validates, and analyzes Scratch projects. If successful,
@ -17,7 +16,6 @@ module.exports = function (input, callback) {
unpack(input, cb);
},
parse,
validate,
analyze
validate
], callback);
};