Adds separate call for css assets
This commit is contained in:
@@ -60,13 +60,22 @@ namespace Umbraco.Cms.Core.WebAssets
|
||||
Task<string> RenderJsHereAsync(string bundleName);
|
||||
|
||||
/// <summary>
|
||||
/// Returns the asset paths for the bundle name
|
||||
/// Returns the asset paths for the JS bundle name
|
||||
/// </summary>
|
||||
/// <param name="bundleName"></param>
|
||||
/// <returns>
|
||||
/// If debug mode is enabled this will return all asset paths (not bundled), else it will return a bundle URL
|
||||
/// </returns>
|
||||
Task<IEnumerable<string>> GetAssetPathsAsync(string bundleName);
|
||||
Task<IEnumerable<string>> GetJsAssetPathsAsync(string bundleName);
|
||||
|
||||
/// <summary>
|
||||
/// Returns the asset paths for the css bundle name
|
||||
/// </summary>
|
||||
/// <param name="bundleName"></param>
|
||||
/// <returns>
|
||||
/// If debug mode is enabled this will return all asset paths (not bundled), else it will return a bundle URL
|
||||
/// </returns>
|
||||
Task<IEnumerable<string>> GetCssAssetPathsAsync(string bundleName);
|
||||
|
||||
/// <summary>
|
||||
/// Minify the file content, of a given type
|
||||
|
||||
Reference in New Issue
Block a user