-
Notifications
You must be signed in to change notification settings - Fork 0
/
repos-library.tf
39 lines (30 loc) · 1006 Bytes
/
repos-library.tf
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
module "repo_browserconfig_loader" {
source = "./modules/repo"
name = "browserconfig-loader"
description = "A Webpack loader for browserconfig.xml files"
ci_workflows = ["library"]
}
module "repo_consumer" {
source = "./modules/repo"
name = "consumer"
description = "Simplifies the use of Iconduit's outputs in consuming projects"
ci_workflows = ["library"]
}
module "repo_html_webpack_plugin" {
source = "./modules/repo"
name = "html-webpack-plugin"
description = "Adds Iconduit tags to the output of html-webpack-plugin"
ci_workflows = ["library"]
}
module "repo_iconduit" {
source = "./modules/repo"
name = "iconduit"
description = "A build system for web application icon and image assets"
ci_workflows = ["library"]
}
module "repo_webmanifest_loader" {
source = "./modules/repo"
name = "webmanifest-loader"
description = "A Webpack loader for .webmanifest files"
ci_workflows = ["library"]
}