mirror of
https://github.com/scratchfoundation/scratch-parser.git
synced 2025-08-28 22:18:45 -04:00
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:
parent
e8369be7f5
commit
f7cb29dff6
8 changed files with 6 additions and 284 deletions
4
index.js
4
index.js
|
@ -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);
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue