-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathIPackageSystem.cs
25 lines (22 loc) · 937 Bytes
/
IPackageSystem.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using System;
using System.Collections.Generic;
namespace ContinuousRunner
{
public interface IPackageSystem
{
/// <summary>
/// Using configuration gleaned about this packaging system (eg. from searching for calls to requirejs.config()), attempt
/// to resolve the module <paramref name="moduleName" /> into a file on the local filesystem. This should work for modules
/// declared in the project, or modules imported from third-party libraries.
/// </summary>
IEnumerable<string> Resolve(string moduleName, string fromModule);
/// <summary>
/// Define a new module including its factory method
/// </summary>
void Define(string fromModule, string moduleName, Func<dynamic> load);
/// <summary>
/// Load a module definition
/// </summary>
Func<dynamic> GetDefinition(string fromModule, string moduleName);
}
}