packager
packager copied to clipboard
An infinite loop was corrected.
When TestA and TestB need each other, an infinite loop is generated. The verification prepared and confirmed following test files TestA and TestB.
Source header of TestA.js
#JS
/*
---
name: TestA
description: Test file A for operation verification
license: MIT-style
authors:
- Noritaka Horio
requires: [Core/Core, TestB]
provides: [TestA]
...
*/
Source header of TestB.js
#JS
/*
---
name: TestB
description: Test file B for operation verification
license: MIT-style
authors:
- Noritaka Horio
requires: [Core/Core, TestA]
provides: TestB
...
*/
To solve an infinite loop, it was corrected that the file processed once was not processed.
cool stuff, I'll test and pull asap.
Nice!