quackage 1.0.21 → 1.0.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quackage",
3
- "version": "1.0.21",
3
+ "version": "1.0.22",
4
4
  "description": "Building. Testing. Quacking.",
5
5
  "main": "source/Quackage.js",
6
6
  "scripts": {
@@ -25,10 +25,10 @@ let _Pict = new libCLIProgram(
25
25
  ]);
26
26
 
27
27
  // Instantiate the file persistence service
28
- _Pict.serviceManager.instantiateServiceProvider('FilePersistence');
29
- _Pict.serviceManager.instantiateServiceProvider('DataGeneration');
28
+ _Pict.instantiateServiceProvider('FilePersistence');
29
+ _Pict.instantiateServiceProvider('DataGeneration');
30
30
  // Add the Quackage Process Management service
31
- _Pict.serviceManager.addAndInstantiateServiceType('QuackageProcess', require('./services/Quackage-Execute-Process.js'));
31
+ _Pict.addAndInstantiateServiceType('QuackageProcess', require('./services/Quackage-Execute-Process.js'));
32
32
 
33
33
  // Grab the current working directory for the quackage
34
34
  _Pict.AppData.CWD = _Pict.QuackageProcess.cwd();